google-code-export / gwt-log

Automatically exported from code.google.com/p/gwt-log
1 stars 0 forks source link

Trace #68

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
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 pro1...@yahoo.de on 22 Jun 2012 at 9:01