Print the stack trace for easier debugging

This commit is contained in:
bm01 2012-07-03 23:28:58 +02:00
parent 73203ce869
commit c6e5264b7b

View File

@ -279,7 +279,7 @@ public class PlayerProfile {
in.close(); in.close();
} catch (Exception e) { } catch (Exception e) {
mcMMO.p.getLogger().severe("Exception while reading " + location + " (Are you sure you formatted it correctly?)" + e.toString()); e.printStackTrace();
} }
return false; return false;
} }
@ -398,7 +398,7 @@ public class PlayerProfile {
out.close(); out.close();
} }
catch (Exception e) { catch (Exception e) {
mcMMO.p.getLogger().severe("Exception while writing to " + location + " (Are you sure you formatted it correctly?)" + e.toString()); e.printStackTrace();
} }
} }
} }
@ -453,7 +453,7 @@ public class PlayerProfile {
out.newLine(); out.newLine();
out.close(); out.close();
} catch (Exception e) { } catch (Exception e) {
mcMMO.p.getLogger().severe("Exception while writing to " + location + " (Are you sure you formatted it correctly?)" + e.toString()); e.printStackTrace();
} }
} }