Archiviert
13
0

We can include the stack trace - it will only very rarely be printed.

Dieser Commit ist enthalten in:
Kristian S. Stangeland 2012-12-12 08:41:55 +01:00
Ursprung 7117545509
Commit 15961f6cce

Datei anzeigen

@ -147,7 +147,7 @@ public class DetailedErrorReporter implements ErrorReporter {
// Nope - only print the error count occationally // Nope - only print the error count occationally
if (isPowerOfTwo(errorCount)) { if (isPowerOfTwo(errorCount)) {
logger.log(Level.SEVERE, "[" + PLUGIN_NAME + "] Unhandled exception number " + errorCount + " occured in " + logger.log(Level.SEVERE, "[" + PLUGIN_NAME + "] Unhandled exception number " + errorCount + " occured in " +
methodName + " for " + pluginName); methodName + " for " + pluginName, error);
} }
return false; return false;
} }