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 Viraj Jasani
parent 7a2a66c9b0
commit 6870b9e168
No known key found for this signature in database
GPG Key ID: 08E70F70AB71C5A1
1 changed files with 1 additions and 1 deletions

View File

@ -286,7 +286,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());
}
}