Skip to content
This repository has been archived by the owner on Feb 17, 2019. It is now read-only.

Commit

Permalink
hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
SergiX44 committed Apr 3, 2015
1 parent c6b6cc2 commit 02fde4c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/it/ksuploader/main/MainServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,12 @@ public void stop() {
final static void log(String toPrint) {
System.out.println(toPrint);
logger.println(toPrint);
logger.flush();
}

final static void err(String s){
logger.println(s);
logger.println(s);
logger.flush();
}

public static void main(String[] args) throws Exception {
Expand Down

0 comments on commit 02fde4c

Please sign in to comment.