/gwt-lognice

A super simple gwt library that makes the log messages nicer.

Primary LanguageJavaApache License 2.0Apache-2.0

gwt-lognice

Build Status

A super simple gwt library that makes the log messages nicer. The library removes all the log prefix when emitting messages. It also provides a replacement for the EventBus that logs the events as they are fired.

Quick Start

The simplest way to use the library is to add the following dependency into the build system. i.e.

<dependency>
   <groupId>org.realityforge.gwt.lognice</groupId>
   <artifactId>gwt-lognice</artifactId>
   <version>0.5</version>
   <scope>provided</scope>
</dependency>

Then you add the following snippet into the .gwt.xml file.

<module rename-to='myapp'>
  ...

  <!-- Enable the lognice library -->
  <inherits name="org.realityforge.gwt.lognice.Lognice"/>
</module>

This should be sufficient to put together a simple application with nicer logging.