Hi I am trying to implement the java logging in my application. I want to use two handlers. A file handler and my own console handler. Both of my handlers work fine. My logg
This is strange but Logger.getLogger("global") does not work in my setup (as well as Logger.getLogger(Logger.GLOBAL_LOGGER_NAME)).
Logger.getLogger("global")
Logger.getLogger(Logger.GLOBAL_LOGGER_NAME)
However Logger.getLogger("") does the job well.
Logger.getLogger("")
Hope this info also helps somebody...