IT Nursery
What is the hierarchy of log4j logging? DEBUG INFO WARN ERROR FATAL Which one provides the highest logging which would be helpful to troubleshoot issues? Can any one provide...
  • May 30, 2022
  • 0 Comments
After adding log4j to my application I get the following output every time I execute my application: log4j:WARN No appenders could be found for logger (slideselector.facedata.FaceDataParser). log4j:WARN Please initialize...
  • May 16, 2022
  • 0 Comments
I have put log4j to my buildpath, but I get the following message when I run my application: log4j:WARN No appenders could be found for logger (dao.hsqlmanager). log4j:WARN Please...
  • May 6, 2022
  • 0 Comments
Alright, so I got it working by changing this log4j.rootLogger=DebugAppender to this log4j.rootLogger=DEBUG, DebugAppender Apparently you have to specify the logging level to the rootLogger first? I apologize if I wasted...
  • April 7, 2022
  • 0 Comments