change log level to warn
This commit is contained in:
parent
ad089592d1
commit
c9d80cd746
2 changed files with 2 additions and 2 deletions
|
@ -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");
|
||||
}
|
||||
|
||||
|
|
|
@ -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");
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue