mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-15 22:05:00 -05:00
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
|
||||
if (args.runCLI()) {
|
||||
int status = new ArgumentProcessor().process(args, new CmdlineOperations());
|
||||
System.out.println();
|
||||
System.exit(status);
|
||||
}
|
||||
|
||||
|
@ -115,7 +115,7 @@ public class ArgumentProcessor {
|
||||
}
|
||||
|
||||
// script finished successfully
|
||||
CLILogger.finest("Done ヾ(@⌒ー⌒@)ノ");
|
||||
CLILogger.finest("Done ヾ(@⌒ー⌒@)ノ" + System.lineSeparator());
|
||||
return 0;
|
||||
} catch (Throwable e) {
|
||||
if (findCause(e, CmdlineException.class) != null) {
|
||||
|
Loading…
Reference in New Issue
Block a user