Debugging GWT with Firebug

From Opentaps Wiki
Jump to navigationJump to search

You can use the Firebug add-on for Mozilla Firefox to debug your Google Web Toolkit (GWT)-based applications. First, installed firebug into your Firefox browser. Then, open it:

Firebug-open-firebug.png

and enable the console:

Firebug-enable-console.png

The console should now be active with messages from your GWT application. For example, the console log below shows the output for:

UtilUi.logDebug("Store loaded for: " + UtilUi.toString(this) + ", lastQueried = " + lastQueried, MODULE, "onStoreLoad");


Firebug-debugging-active.png