This commit is contained in:
Lorenzo Iovino 2017-07-07 15:50:00 +02:00
parent e5c3202bb2
commit 3a528f307b
25 changed files with 1138 additions and 473 deletions

View file

@ -29,7 +29,6 @@ public class Logger {
fw = new FileWriter(logFile, true);
bw = new BufferedWriter(fw);
out = new PrintWriter(bw);
System.out.println(msg);
Date d = new Date();
out.append("LOGGER ("+name+"): " + d.toString() + " - " + msg + "\n");
} catch (IOException e) {