Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 441 Bytes

File metadata and controls

9 lines (7 loc) · 441 Bytes

Logger

  1. Configure the logger in this project. Add appenders for File and Console
  2. Edit the .gitignore file so that your file with logs is NOT pushed to GitHub
  3. If you have System.out.println() then replace them all with corresponding logger methods
  4. Complete all TODO statements
  5. Replace all e.printStackTrace(); with corresponding logger methods

Try to avoid these common mistakes while solving task