Sorry for my poor english :( when i test logback0.9.9 and slf4j 1.5.2 ,I found this bugļ¼ the test code is fllow:
log.debug("a:{},v:{},float:{},", new Object[] {"A", "C", new float[]
{1, 2, 3} });
Then I got the log message is :
2008-07-20 02:11:18,656 DEBUG main a:A,v:C,float:[EMAIL PROTECTED],
but I want to got :
2008-07-20 02:13:49,515 DEBUG main a:A,v:C,float:[1.0,2.0,3.0],
so I read the souce and found the bug in MessageFormatter.java.
then I change the code in MessageFormatter.java to fix the bug ..
I got the code from svn :
http://svn.slf4j.org/repos/slf4j/trunk/slf4j-api/src/main/java/
and use "svn diff MessageFormatter.java >MessageFormatter.java.patch" to
make a patch file.
MessageFormatter.java.patch
Description: Binary data
_______________________________________________ dev mailing list [email protected] http://www.slf4j.org/mailman/listinfo/dev
