From 5dcb23c1f005dfa8203c156abfc3d538a67028dc Mon Sep 17 00:00:00 2001 From: TiborKovacsCloudera <90398134+TiborKovacsCloudera@users.noreply.github.com> Date: Sun, 19 Sep 2021 14:35:34 +0200 Subject: [PATCH] YARN-10937. Fix log message arguments in LogAggregationFileController (#3450) --- .../filecontroller/LogAggregationFileController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/logaggregation/filecontroller/LogAggregationFileController.java b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/logaggregation/filecontroller/LogAggregationFileController.java index bd159ee0d9..3c3380cc3c 100644 --- a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/logaggregation/filecontroller/LogAggregationFileController.java +++ b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/logaggregation/filecontroller/LogAggregationFileController.java @@ -390,7 +390,7 @@ public void verifyAndCreateRemoteLogDir() { remoteFS.setPermission(qualified, new FsPermission(TLDIR_PERMISSIONS)); } catch ( UnsupportedOperationException use) { LOG.info("Unable to set permissions for configured filesystem since" - + " it does not support this", remoteFS.getScheme()); + + " it does not support this {}", remoteFS.getScheme()); fsSupportsChmod = false; } @@ -437,7 +437,7 @@ public void verifyAndCreateRemoteLogDir() { remoteFS.setPermission(permissionCheckFile, new FsPermission(TLDIR_PERMISSIONS)); } catch (UnsupportedOperationException use) { LOG.info("Unable to set permissions for configured filesystem since" - + " it does not support this", remoteFS.getScheme()); + + " it does not support this {}", remoteFS.getScheme()); fsSupportsChmod = false; } catch (IOException e) { LOG.warn("Failed to check if FileSystem supports permissions on "