Java Util Logging (JUL) is Java 's own logging framework to make logging more configurable then the previous usage of System.out.println(), System.err.println() and e.printStackTrace() usage.
JUL is provided by Java package java.util.logging (introduced in 2002 with Java 1.4)
Java Util Logging is not very developer friendly.
It contains just a very basic way of logging, a method called log where you always have to indicate the level.
And those levels are not very clear for usage :
- SEVERE
- WARNING
- INFO
- CONFIG
- FINE
- FINER
- FINEST
No comments:
Post a Comment
Note: only a member of this blog may post a comment.