We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f5d65c commit 0be056bCopy full SHA for 0be056b
1 file changed
Essentials/src/main/java/com/earth2me/essentials/Backup.java
@@ -102,12 +102,12 @@ public void run() {
102
} while (line != null);
103
}
104
} catch (final IOException ex) {
105
- ess.getLogger().log(Level.SEVERE, null, ex);
+ ess.getLogger().log(Level.SEVERE, "An error occurred while reading backup child process", ex);
106
107
});
108
child.waitFor();
109
} catch (final InterruptedException | IOException ex) {
110
+ ess.getLogger().log(Level.SEVERE, "An error occurred while building the backup child process", ex);
111
} finally {
112
class BackupEnableSaveTask implements Runnable {
113
@Override
0 commit comments