X-Git-Url: https://code.wpia.club/?p=gigi.git;a=blobdiff_plain;f=lib%2Fjetty%2Forg%2Feclipse%2Fjetty%2Fio%2FChannelEndPoint.java;h=5ce60e7bb1ec4fd02950a572c640c75e232e6099;hp=c65ca0ccfc874c1e5fee2f6290f17570976a521b;hb=ba4f228fa9f72d50991a2218cfd83987ef5d385e;hpb=875b5e9651498a0cd8e0001c0742ba843e47cad0 diff --git a/lib/jetty/org/eclipse/jetty/io/ChannelEndPoint.java b/lib/jetty/org/eclipse/jetty/io/ChannelEndPoint.java index c65ca0cc..5ce60e7b 100644 --- a/lib/jetty/org/eclipse/jetty/io/ChannelEndPoint.java +++ b/lib/jetty/org/eclipse/jetty/io/ChannelEndPoint.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 @@ -61,7 +61,8 @@ public class ChannelEndPoint extends AbstractEndPoint protected void shutdownInput() { - LOG.debug("ishut {}", this); + if (LOG.isDebugEnabled()) + LOG.debug("ishut {}", this); _ishut=true; if (_oshut) close(); @@ -70,7 +71,8 @@ public class ChannelEndPoint extends AbstractEndPoint @Override public void shutdownOutput() { - LOG.debug("oshut {}", this); + if (LOG.isDebugEnabled()) + LOG.debug("oshut {}", this); _oshut = true; if (_channel.isOpen()) { @@ -109,7 +111,8 @@ public class ChannelEndPoint extends AbstractEndPoint public void close() { super.close(); - LOG.debug("close {}", this); + if (LOG.isDebugEnabled()) + LOG.debug("close {}", this); try { _channel.close();