Refactor argument handling a bit

This commit is contained in:
Reinhard Pointner 2016-10-19 03:16:31 +08:00
parent 7151227222
commit 6390eb2f3b
1 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ public class ArgumentProcessor {
runScript(args);
// script finished successfully
log.finest("Done ヾ(@⌒ー⌒@)" + System.lineSeparator());
log.finest("Done ヾ(@⌒ー⌒@)");
return 0;
}
} catch (Throwable e) {
@ -42,7 +42,7 @@ public class ArgumentProcessor {
}
// script failed with exception -> exit with non-zero exit code (and use positive code to avoid issues with launch4j launcher)
log.finest("Failure (°_°)" + System.lineSeparator());
log.finest("Failure (°_°)");
return 1;
}