YARN-10937. Fix log message arguments in LogAggregationFileController (#3450)
This commit is contained in:
parent
aa74a303ed
commit
5dcb23c1f0
@ -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 "
|
||||
|
Loading…
Reference in New Issue
Block a user