forked from j62/ctbrec
1
0
Fork 0

Fix log messages

This commit is contained in:
0xboobface 2018-12-13 20:54:26 +01:00
parent ceb7c07aa8
commit 150af23d14
1 changed files with 2 additions and 2 deletions

View File

@ -48,9 +48,9 @@ public class ExecuteProgram extends Action {
err.start(); err.start();
process.waitFor(); process.waitFor();
LOG.debug("executing {} finished", executable); LOG.debug("Executing {} finished", executable);
} catch (Exception e) { } catch (Exception e) {
LOG.error("Error while processing {}", e); LOG.error("Error while executing {}", executable, e);
} }
} }