Skip to content

Commit 8aaf5e1

Browse files
committed
HDFS-14759. HDFS cat logs an info message.
Contributed by Eric Badger.
1 parent 30ce854 commit 8aaf5e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/protocol/datatransfer/sasl/SaslDataTransferClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ private IOStreamPair checkTrustAndSend(
227227
throws IOException {
228228
boolean localTrusted = trustedChannelResolver.isTrusted();
229229
boolean remoteTrusted = trustedChannelResolver.isTrusted(addr);
230-
LOG.info("SASL encryption trust check: localHostTrusted = {}, "
230+
LOG.debug("SASL encryption trust check: localHostTrusted = {}, "
231231
+ "remoteHostTrusted = {}", localTrusted, remoteTrusted);
232232
if (!localTrusted || !remoteTrusted) {
233233
// The encryption key factory only returns a key if encryption is enabled.

0 commit comments

Comments
 (0)