0

I am creating application using GWT + Hibernate.I am facing out a problem; it is "java.lang.NoSuchMethodError: org.slf4j.Logger.isTraceEnabled()Z" Exception. I checked and really this method is not available in jar file. I searched for jar on net but could not find. Please help me for finding the appropriate jar. Thnaks Rahul

Rahul
  • 119
  • 2
  • 12

2 Answers2

0

That's obviously the Logger class of SLF4J, download @http://www.slf4j.org/download.html

0

If you are trying to use SL4J in your GWT client code that is not possible as it is a third party library and GWT cannot use it without translating the source code.

For logging in your client code, please read this GWT documentation. You can also use the gwt-log project.

I've answered a similar question before as well.

Community
  • 1
  • 1
Strelok
  • 50,229
  • 9
  • 102
  • 115