Comment out a stack trace that gave me a 15GB log file

This commit is contained in:
Nathan Wolf 2015-02-15 13:00:46 -08:00
parent 8af8ee74e0
commit a8da2268a5

View File

@ -4766,7 +4766,9 @@ public class Quests extends JavaPlugin implements ConversationAbandonedListener,
UUID.fromString(s);
return true;
} catch (IllegalArgumentException e) {
e.printStackTrace();
// Maybe only enable this when debugging?
// When it fails, it can generate gigabyte-sized log files.
// e.printStackTrace();
}
}