Skip to content

Commit 247dc40

Browse files
authored
fix: change 'removing interceptor' message to 'FINE' (#163)
1 parent abc1fa1 commit 247dc40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/ibm/cloud/sdk/core/http/HttpClientSingleton.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* (C) Copyright IBM Corp. 2015, 2021.
2+
* (C) Copyright IBM Corp. 2015, 2022.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
55
* the License. You may obtain a copy of the License at
@@ -322,7 +322,7 @@ private OkHttpClient reconfigureClientInterceptors(OkHttpClient client, String i
322322
Interceptor element = iter.next();
323323
String currentInterceptor = element.getClass().getSimpleName();
324324
if (currentInterceptor.equals(interceptorToRemove)) {
325-
LOG.log(Level.INFO, "Removing interceptor" + currentInterceptor + " from http client instance.");
325+
LOG.log(Level.FINE, "Removing interceptor " + currentInterceptor + " from http client instance.");
326326
iter.remove();
327327
}
328328
}

0 commit comments

Comments
 (0)