what are the two static methods for obtaining a logger object?
Answer / Anurag Khare
In Apache Log4j, you can obtain a Logger instance using either of these two static methods: (1) Logger.getLogger(String name): Returns the logger associated with the specified name; and (2) Logger.getRootLogger(): Returns the root logger, which is the top-level logger in your application.
| Is This Answer Correct ? | 0 Yes | 0 No |
what are the two static methods for obtaining a logger object?
what does WARN and TRACE level indicates in log4j?
Inside logger component what are the different log levels?
Explain why to use Apache Log4j?
what is the difference between Threshold and LevelRangeFilter in log4j?
Explain whether a log output format can be customized?
Explain whether log4j is a thread safe?
what are the logging methods provided by logger class?
what is the command to write your logging information into a file?
In log4j how can you log into the database?
what is the best way to migrate from java.util logging to log4j?
what does .class mean in log4j context?