Skip to content

Commit

Permalink
Error management.
Browse files Browse the repository at this point in the history
  • Loading branch information
albertus82 committed May 15, 2015
1 parent e6759f7 commit 210db49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/it/albertus/router/logger/RouterLogger.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public static final void main(final String... args) {
((RouterLogger) Class.forName(className).newInstance()).run();
}
catch (Exception e) {
System.out.println(e.getClass().getName() + ": " + args[0]);
e.printStackTrace();
System.out.println();
System.out.println(COMMAND_LINE_HELP);
}
Expand Down

0 comments on commit 210db49

Please sign in to comment.