Created
April 14, 2016 07:33
-
-
Save Maslor/09c16705c1210c3e7ea8b5c3d93191df to your computer and use it in GitHub Desktop.
log4j levels
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
log.debug("message"); //Designates fine-grained informational events that are most useful to debug an application. | |
log.error("message"); //Designates error events that might still allow the application to continue running. | |
log.fatal("message"); //Designates very severe error events that will presumably lead the application to abort. | |
log.info("message"); //Designates informational messages that highlight the progress of the application at coarse-grained level. | |
log.trace("message"); //Designates finer-grained informational events than the DEBUG. | |
log.warn("message"); //Designates potentially harmful situations. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment