change log level from info to error

pull/14245/head
Max U 2019-07-08 14:52:53 -04:00
parent 9091d72ba7
commit c6c0a5d3b1
1 changed files with 1 additions and 1 deletions

View File

@ -2214,7 +2214,7 @@ func (s *compactionStrategy) compactGroup() {
// Remove the new snapshot files. We will try again.
for _, file := range files {
if err := os.Remove(file); err != nil {
log.Info("Unable to remove file", zap.String("path", file), zap.Error(err))
log.Error("Unable to remove file", zap.String("path", file), zap.Error(err))
}
}
return