--java.util.logging is a module installed in Java that handles logging.
--A history of events recorded in chronological order --Log level exists
--Literally the log level --In java.util.logging, the levels are divided as follows. By default, it is set to output logs of INFO or higher. --FINE ST-- Very detailed trace message --FINER --A fairly detailed trace message --FINE --Detailed trace message --CONFIG --Static configuration message --INFO --Information message --WARNING --Warning message --SEVERE --Critical message
--Logger --Log output --Handler --Control the log output destination --Formatter --Control the log format
-How to use java.util.logging -[Introduction to Java] How to use Logger (explains log level and output destination settings)