change log level to warn

This commit is contained in:
Shinsuke Sugaya 2019-05-01 18:11:18 +09:00
parent ad089592d1
commit c9d80cd746
2 changed files with 2 additions and 2 deletions

View file

@ -78,7 +78,7 @@ public class GenerateThumbnailJob extends ExecJob {
try {
executeThumbnailGenerator();
} catch (final Exception e) {
logger.error("Failed to generate thumbnails.", e);
logger.warn("Failed to generate thumbnails.", e);
resultBuf.append(e.getMessage()).append("\n");
}

View file

@ -65,7 +65,7 @@ public class SuggestJob extends ExecJob {
try {
executeSuggestCreator();
} catch (final Exception e) {
logger.error("Failed to create suggest data.", e);
logger.warn("Failed to create suggest data.", e);
resultBuf.append(e.getMessage()).append("\n");
}