
15 Feb
2008
15 Feb
'08
1:24 a.m.
http://bugzilla.qos.ch/show_bug.cgi?id=127 ------- Comment #2 from mark_z@charter.net 2008-02-15 02:24 ------- Good point! public int compare(Logger l1, Logger l2) { if(l1.getName().equals(l2.getName())){ return 0; } if(l1.getName().equals(LoggerContext.ROOT_NAME)){ return -1; } if(l2.getName().equals(LoggerContext.ROOT_NAME)){ return 1; } return l1.getName().compareTo(l2.getName()); } -- Configure bugmail: http://bugzilla.qos.ch/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.