Skip to content

Commit f1df455

Browse files
committed
Fix incorrect logger class in ResumableAsyncHandler
1 parent 8e25511 commit f1df455

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/main/java/org/asynchttpclient/handler/resumable/ResumableAsyncHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
* Beware that it registers a shutdown hook, that will cause a ClassLoader leak when used in an appserver and only redeploying the application.
4848
*/
4949
public class ResumableAsyncHandler implements AsyncHandler<Response> {
50-
private static final Logger logger = LoggerFactory.getLogger(TransferCompletionHandler.class);
50+
private static final Logger logger = LoggerFactory.getLogger(ResumableAsyncHandler.class);
5151
private static final ResumableIndexThread resumeIndexThread = new ResumableIndexThread();
5252
private static Map<String, Long> resumableIndex = Collections.emptyMap();
5353

0 commit comments

Comments
 (0)