Log ALL the things!

This commit is contained in:
GJ
2013-02-12 22:18:47 -05:00
parent e37f5e765e
commit aa0acf767b
9 changed files with 20 additions and 18 deletions

View File

@ -38,7 +38,7 @@ public final class Anniversary {
try {
anniversaryFile.createNewFile();
} catch (IOException ex) {
System.out.println(ex);
mcMMO.p.getLogger().severe(ex.toString());
}
}
hasCelebrated = new ArrayList<String>();
@ -55,7 +55,7 @@ public final class Anniversary {
reader.close();
} catch (Exception ex) {
System.out.println(ex);
mcMMO.p.getLogger().severe(ex.toString());
}
}
@ -70,7 +70,7 @@ public final class Anniversary {
writer.close();
}
catch (Exception ex) {
System.out.println(ex);
mcMMO.p.getLogger().severe(ex.toString());
}
}