-
Enhancement
-
Resolution: Fixed
-
P4
-
6
-
b03
-
generic, x86
-
generic, linux
-
Not verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2152934 | OpenJDK6 | Serguei Spitsyn | P2 | Resolved | Fixed | b01 |
A DESCRIPTION OF THE REQUEST :
With the deprecation of Logger.global, there is no convenient way of doing entry-level logging.
Logger.getLogger(Logger.GLOBAL_LOGGER_NAME) is not an adequate substitute for Logger.global.
A convenience method--either Logger.global() or Logger.getGlobal()--should be provided.
JUSTIFICATION :
http://forums.java.net/jive/thread.jspa?messageID=156587
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Logger.global().info("See how easy logging is").
ACTUAL -
Logger.getLogger(Logger.GLOBAL_LOGGER_NAME).info("This isn't going to win the hearts and minds of developers.");
With the deprecation of Logger.global, there is no convenient way of doing entry-level logging.
Logger.getLogger(Logger.GLOBAL_LOGGER_NAME) is not an adequate substitute for Logger.global.
A convenience method--either Logger.global() or Logger.getGlobal()--should be provided.
JUSTIFICATION :
http://forums.java.net/jive/thread.jspa?messageID=156587
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Logger.global().info("See how easy logging is").
ACTUAL -
Logger.getLogger(Logger.GLOBAL_LOGGER_NAME).info("This isn't going to win the hearts and minds of developers.");
- backported by
-
JDK-2152934 Add convenience method for deprecated Logger.global
-
- Resolved
-
- duplicates
-
JDK-6442043 No documented way to use Logger.global in JDK1.5 that would not be deprecated in JDK1.6
-
- Closed
-