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
            Asked
            
        
        
            Active
            
        
            Viewed 182 times
        
    2 Answers
0
            
            
        That's obviously the Logger class of SLF4J, download @http://www.slf4j.org/download.html
 
    
    
        Thorsten Wendelmuth
        
- 779
- 5
- 12
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.
 
     
    