X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;f=lib%2Fjetty%2Forg%2Feclipse%2Fjetty%2Futil%2Flog%2FAbstractLogger.java;h=e061ae7b29be5d5aed8c2a331dc8a5a0d020c53f;hb=aa5723dbb64ec8efa63909d39ff72364f0a5ee96;hp=66453768a2225b899330b1be60f33d58016c6931;hpb=ec24cf6925bb3729a644580ad4a9375d05883c62;p=gigi.git 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) }); + } } }