Latest release: v0.5.2WebApp.Net documentation

Debugging

This page is specific to: WebApp.Net Version:0.20.30.50.6

January, 15th 2010

You can easily debug your web application on both device and desktop computer following these simple steps.

On device debugging


With newer version of the iPhone and iPod Touch firmware, starting with 1.1.2 (TODO: to be confirmed ?), you have access to a developer console right in your Safari Mobile browser. To activate it, go to Settings, Safari, scroll down and tap the last option Developer, set Debug Console to ON.

js
printcopy to clipboardDebug 1.3.1
// Simple message, no icon
console.log(message);

// Warning message, with yellow warning icon
console.warn(message);

// Error message, with red error icon
console.error(message);

Desktop debugging


You can use the desktop version of Safari, available from Apple web site for both Windows and Mac, or Firefox with Firebug also available on both platforms.

You can use then the same function as exposed with "On device debugging".

TODO: be abit more specific

WebApp.Net