HDDS-1309 . change logging from warn to debug in XceiverClient. Contributed by Nilotpal Nandi. (#638)
This commit is contained in:
parent
ac4010bb22
commit
4cceeb2682
|
@ -270,7 +270,7 @@ public class XceiverClientGrpc extends XceiverClientSpi {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} catch (ExecutionException | InterruptedException e) {
|
} catch (ExecutionException | InterruptedException e) {
|
||||||
LOG.warn("Failed to execute command " + request + " on datanode " + dn
|
LOG.debug("Failed to execute command " + request + " on datanode " + dn
|
||||||
.getUuidString(), e);
|
.getUuidString(), e);
|
||||||
if (Status.fromThrowable(e.getCause()).getCode()
|
if (Status.fromThrowable(e.getCause()).getCode()
|
||||||
== Status.UNAUTHENTICATED.getCode()) {
|
== Status.UNAUTHENTICATED.getCode()) {
|
||||||
|
|
Loading…
Reference in New Issue