Re: [logging] proposal to split Log4JLogger into Log4J12Logger and Log4J13Logger

2005-06-26 Thread robert burrell donkin
On Mon, 2005-06-20 at 18:22 +1200, Simon Kitching wrote: Hi, Currently the Log4JLogger class has this kind of thing all through it: if(is12) { getLogger().log(FQCN, (Priority) Level.DEBUG, message, null ); } else { getLogger().log(FQCN, Level.DEBUG, message, null ); }

[logging] proposal to split Log4JLogger into Log4J12Logger and Log4J13Logger

2005-06-20 Thread Simon Kitching
Hi, Currently the Log4JLogger class has this kind of thing all through it: if(is12) { getLogger().log(FQCN, (Priority) Level.DEBUG, message, null ); } else { getLogger().log(FQCN, Level.DEBUG, message, null ); } This code is intended to deal with the fact that log4j1.3 is