Hi ,

I'm using the folowing jar files :


log4j-1.2.15.jar
slf4j-api-1.5.2.jar
jul-to-slf4j-1.5.2.jar
lsf4j-log4j.jar


Log4j system is configured ok and runs quite well .
The problem is that a code like bellow :


        SLF4JBridgeHandler.install();
        java.util.logging.Logger logger =
java.util.logging.Logger.getLogger("ro.softspot");
        logger.info("info name");
        logger.finer("finer message");
        logger.warning("warning message");
        logger.fine("fine message");
        logger.finest("Finest name");

prints out :


[29-07-08 12:03:54.792][ro.softspot][ INFO][setName] - info name
[29-07-08 12:03:54.792][ro.softspot][ WARN][setName] - warning message

the logs with "fine" and "finer" and "finest" level are omitted .
Any ideas why this is happening ?
_______________________________________________
user mailing list
[email protected]
http://www.slf4j.org/mailman/listinfo/user

Reply via email to