gwt-log icon indicating copy to clipboard operation
gwt-log copied to clipboard

Trace

Open GoogleCodeExporter opened this issue 11 years ago • 0 comments

Current implementation of com.allen_sauer.gwt.log.client.Log:
public final class Log {
...
  public static void trace(String message) {
    debug(message, (Throwable) null);
  }
...
}

Should't this be
  public static void trace(String message) {
    trace(message, (Throwable) null);
  }

Original issue reported on code.google.com by [email protected] on 22 Jun 2012 at 9:01

GoogleCodeExporter avatar Mar 13 '15 18:03 GoogleCodeExporter