Change log level for deleted files to trace

This commit is contained in:
0xboobface 2018-09-19 13:28:14 +02:00
parent d58e80ce00
commit 69c518d6d6
1 changed files with 1 additions and 1 deletions

View File

@ -529,7 +529,7 @@ public class LocalRecorder implements Recorder {
boolean deletedAllFiles = true; boolean deletedAllFiles = true;
for (File file : files) { for (File file : files) {
try { try {
LOG.debug("Deleting {}", file.getAbsolutePath()); LOG.trace("Deleting {}", file.getAbsolutePath());
Files.delete(file.toPath()); Files.delete(file.toPath());
} catch (Exception e) { } catch (Exception e) {
deletedAllFiles = false; deletedAllFiles = false;