Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to report log messages in a Client-side GWT applications for development purposes (in Standard GWT libraries i.e. No external libraries)?

i.e. like the Logger that can be used to output log messages to catalina.out when developing things for say Tomcat.

share|improve this question

2 Answers

up vote 6 down vote accepted

Take a look to the gwt-log project. Seems that's you're looking for.

http://code.google.com/p/gwt-log/

share|improve this answer
6  
For some quick & dirty logging there's the built-in GWT.log: google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/…, java.lang.Throwable) It will print out the messages to Development Mode. Not as nice as gwt-log, but still useful for some quick debugging. – Igor Klimer Jan 23 '10 at 0:44
GWT.log is exactly what I needed, perfect for quick and dirty logging – pbojinov Mar 1 '12 at 5:28

Just a quick example..

Add this line in *.gwt.xml file. Its in parent package of your client side source. The top most package..

<inherits name="com.google.gwt.logging.Logging"/>

Add this in .java file, lets say in the onModuleLoad() method

public void onModuleLoad() {
  Logger logger = Logger.getLogger("NameOfYourLogger");
    logger.log(Level.SEVERE, "this message should get logged");
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.