HBASE-27175 - Failure to cleanup WAL split dir log should be at INFO level (#4593)

Signed-off-by: Viraj Jasani <vjasani@apache.org>
This commit is contained in:
Ujjawal 2022-07-07 05:02:52 +05:30 committed by GitHub
parent b9706916cc
commit a31cc931fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -284,7 +284,7 @@ public class ServerCrashProcedure extends
}
splitWALManager.deleteWALDir(serverName);
} catch (IOException e) {
LOG.warn("Remove WAL directory for {} failed, ignore...{}", serverName, e.getMessage());
LOG.info("Remove WAL directory for {} failed, ignore...{}", serverName, e.getMessage());
}
}