Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
import org.asynchttpclient.RequestBuilder;
import org.asynchttpclient.Response;
import org.asynchttpclient.Response.ResponseBuilder;
import org.asynchttpclient.handler.TransferCompletionHandler;
import org.jetbrains.annotations.Nullable;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
Expand All @@ -47,7 +46,7 @@
* Beware that it registers a shutdown hook, that will cause a ClassLoader leak when used in an appserver and only redeploying the application.
*/
public class ResumableAsyncHandler implements AsyncHandler<Response> {
private static final Logger logger = LoggerFactory.getLogger(TransferCompletionHandler.class);
private static final Logger LOGGER = LoggerFactory.getLogger(ResumableAsyncHandler.class);
private static final ResumableIndexThread resumeIndexThread = new ResumableIndexThread();
private static Map<String, Long> resumableIndex = Collections.emptyMap();

Expand Down Expand Up @@ -125,7 +124,7 @@ public void onThrowable(Throwable t) {
if (decoratedAsyncHandler != null) {
decoratedAsyncHandler.onThrowable(t);
} else {
logger.debug("", t);
LOGGER.debug("", t);
}
}

Expand Down
Loading