X-Git-Url: https://code.wpia.club/?p=gigi.git;a=blobdiff_plain;f=lib%2Fjetty%2Forg%2Feclipse%2Fjetty%2Futil%2Flog%2FAbstractLogger.java;fp=lib%2Fjetty%2Forg%2Feclipse%2Fjetty%2Futil%2Flog%2FAbstractLogger.java;h=e061ae7b29be5d5aed8c2a331dc8a5a0d020c53f;hp=66453768a2225b899330b1be60f33d58016c6931;hb=065ca60170f2471227dc25784e1a4c3b7912d367;hpb=ad7a401ad98da5a8a33e60d39789e941aa8ccfc4 diff --git a/lib/jetty/org/eclipse/jetty/util/log/AbstractLogger.java b/lib/jetty/org/eclipse/jetty/util/log/AbstractLogger.java index 66453768..e061ae7b 100644 --- a/lib/jetty/org/eclipse/jetty/util/log/AbstractLogger.java +++ b/lib/jetty/org/eclipse/jetty/util/log/AbstractLogger.java @@ -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) }); + } } }