Removing output from my logging
Hello
I use the logger package to print both debug info and userinfo. A irritating feature with logging is that it prints all kinds of AWT events on the level "FINE", which easily swamps my debug info. I find that kind of information more naturally on a level "FINER" or "FINEST" (god knows what they logg). I want to use "FINE" exclusively for my own logging messages to "FINE", or atleast awoid the AWT hell. Does anyone know how to avoid them some way. I have no clue as to where their level is set, or where they originates from.
FYI I am using the root logmanager for all my loggers, and use custom handlers for all my loggings (they extends Handler tough).
Regards
Fluid

