I’d like to remove the timestamp from GWT logging output on the console.
What’s the simplest way to do this? Ideally, in the .gwt.xml configuration would be great.
Here is an example output currently with the timestamp:
Wed Mar 21 08:23:57 EDT 2012 Job
FINE: Job: 'updater': end
EDIT: I am only interested in the client side.
This logging capability is not really configurable. You need to write your own formatter:
call this at the beginning of onModuleLoad():
And here is an example of a formatter:
More: http://code.google.com/webtoolkit/doc/latest/DevGuideLogging.html