Use debug logging if no translog file is found

This commit is contained in:
Simon Willnauer 2015-04-22 21:12:51 +02:00
parent a0414599a8
commit 8cd59151af
1 changed files with 1 additions and 1 deletions

View File

@ -1214,7 +1214,7 @@ public class InternalEngine extends Engine {
}
}
} catch (FileNotFoundException ex) {
logger.info("no translog file found for ID: " + translogId);
logger.debug("no translog file found for ID: " + translogId);
} catch (TruncatedTranslogException e) {
// file is empty or header has been half-written and should be ignored
logger.trace("ignoring truncation exception, the translog is either empty or half-written", e);