Removed warn logging statement from Adapter.failed(Throwable) since

it just clutter the logs.
This commit is contained in:
Simone Bordet 2013-10-22 19:18:34 +02:00
parent 1df50f86f9
commit 61dcf9895e
1 changed files with 0 additions and 3 deletions

View File

@ -34,8 +34,6 @@
package org.eclipse.jetty.util;
import org.eclipse.jetty.util.log.Log;
/**
* <p>A callback abstraction that handles completed/failed events of asynchronous operations.</p>
*
@ -70,7 +68,6 @@ public interface Callback
@Override
public void failed(Throwable x)
{
Log.getLogger(this.getClass()).warn(x);
}
}
}