Hi,
I'm using the GWT library version 2.0 (with GWT 2.1m2). When compiling a
minimal module I have this error
Errors in
'jar:file:/.../org.restlet-2.0.jar!/org/restlet/client/engine/log/LoggerFacade.java'
Line 53: The method getAnonymousLogger() is undefined for the type Logger
My module is:
public class MyPortal implements EntryPoint {
public void onModuleLoad() {
ClientResource res = new ClientResource("/welcome");
}
}
So, LoggerFacade reference the non-implemented method getAnonymousLogger.
Looking the Logger implementation for GWT from Google, you can find, line 125:
/* Not Implemented */
// public static Logger getAnonymousLogger() {
It seems to be a bug. So, the library can't be used. Am I the only one with
this problem?
Regards,
Olivier
------------------------------------------------------
http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2637055