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
Original issue reported on code.google.com by
pro1...@yahoo.de
on 22 Jun 2012 at 9:01