]> WPIA git - gigi.git/blobdiff - lib/jetty/org/eclipse/jetty/util/log/AbstractLogger.java
updating jetty to jetty-9.2.16.v2016040
[gigi.git] / lib / jetty / org / eclipse / jetty / util / log / AbstractLogger.java
index 66453768a2225b899330b1be60f33d58016c6931..e061ae7b29be5d5aed8c2a331dc8a5a0d020c53f 100644 (file)
@@ -1,6 +1,6 @@
 //
 //  ========================================================================
-//  Copyright (c) 1995-2014 Mort Bay Consulting Pty. Ltd.
+//  Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd.
 //  ------------------------------------------------------------------------
 //  All rights reserved. This program and the accompanying materials
 //  are made available under the terms of the Eclipse Public License v1.0
@@ -79,6 +79,8 @@ public abstract class AbstractLogger implements Logger
     public void debug(String msg, long arg)
     {
         if (isDebugEnabled())
-            debug(msg,new Long(arg));
+        {
+            debug(msg,new Object[] { new Long(arg) });
+        }
     }
 }