Print extra new lines only if logging is turned on
This commit is contained in:
parent
01d4e23f01
commit
f27325a458
|
@ -168,7 +168,6 @@ public class Main {
|
||||||
// CLI mode => run command-line interface and then exit
|
// CLI mode => run command-line interface and then exit
|
||||||
if (args.runCLI()) {
|
if (args.runCLI()) {
|
||||||
int status = new ArgumentProcessor().process(args, new CmdlineOperations());
|
int status = new ArgumentProcessor().process(args, new CmdlineOperations());
|
||||||
System.out.println();
|
|
||||||
System.exit(status);
|
System.exit(status);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -115,7 +115,7 @@ public class ArgumentProcessor {
|
||||||
}
|
}
|
||||||
|
|
||||||
// script finished successfully
|
// script finished successfully
|
||||||
CLILogger.finest("Done ヾ(@⌒ー⌒@)ノ");
|
CLILogger.finest("Done ヾ(@⌒ー⌒@)ノ" + System.lineSeparator());
|
||||||
return 0;
|
return 0;
|
||||||
} catch (Throwable e) {
|
} catch (Throwable e) {
|
||||||
if (findCause(e, CmdlineException.class) != null) {
|
if (findCause(e, CmdlineException.class) != null) {
|
||||||
|
|
Loading…
Reference in New Issue