Friday, February 25, 2011

Re: is it possible to use an SLF4J adapter in GWT to wrap java.util.logging ?

I'm also currently working on an emulation of org.slf4j.Logger and org.slf4j.LoggerFactory. The emulated LoggerFactory class simply calls java.util.logging.Logger.getLogger(String) to create a logger, and the emulation of org.slf4j.Logger that is returned from LoggerFactory wraps the java.util.logging.Logger. I didn't bother emulating the Marker methods because we aren't using them. The org.slf4j.Logger emulation is loosely based on org.slf4j.impl.JDK14LoggerAdapter.

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

No comments:

Post a Comment