HBASE-14042 Fix FATAL level logging in FSHLog where logged for non fatal exceptions

This commit is contained in:
Andrew Purtell 2015-07-08 17:37:56 -07:00
parent f5ad736282
commit 41c8ec7aea
1 changed files with 1 additions and 1 deletions

View File

@ -1844,7 +1844,7 @@ public class FSHLog implements WAL {
// Update metrics.
postAppend(entry, EnvironmentEdgeManager.currentTime() - start);
} catch (Exception e) {
LOG.fatal("Could not append. Requesting close of wal", e);
LOG.warn("Could not append. Requesting close of wal", e);
requestLogRoll();
throw e;
}