438331 - AbstractLogger.debug(String,long) infinite loop
+ Breaking infinit loop
This commit is contained in:
parent
5969638e69
commit
0c7de2e5bd
|
@ -79,6 +79,8 @@ public abstract class AbstractLogger implements Logger
|
||||||
public void debug(String msg, long arg)
|
public void debug(String msg, long arg)
|
||||||
{
|
{
|
||||||
if (isDebugEnabled())
|
if (isDebugEnabled())
|
||||||
debug(msg,new Long(arg));
|
{
|
||||||
|
debug(msg,new Object[] { new Long(arg) });
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue