-
Notifications
You must be signed in to change notification settings - Fork 0
Best Practices
Michal Valny edited this page Mar 20, 2017
·
10 revisions
Please switch to logger instead of:
System.out.println("annoying message");
Usage is easy:
// initialize logger
private Logger logger = LoggerFactory.getLogger(MyClass.class);
logger.info("less annoying message");