Skip to content
This repository has been archived by the owner on Dec 18, 2018. It is now read-only.

Latest commit

 

History

History
36 lines (27 loc) · 1.16 KB

README.md

File metadata and controls

36 lines (27 loc) · 1.16 KB

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.