Simplify error messages (when parsing dropped text files)

This commit is contained in:
Reinhard Pointner 2016-06-20 22:52:01 +08:00
parent 09b41170fd
commit 6b8b0537ad
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ class FilesListTransferablePolicy extends BackgroundFileTransferablePolicy<File>
load(list, false, sink); // add paths from text file load(list, false, sink); // add paths from text file
} }
} catch (Exception e) { } catch (Exception e) {
debug.log(Level.WARNING, e.getMessage(), e); debug.log(Level.WARNING, "Failed to read paths from text file: " + e.getMessage());
} }
} }