Jrobin: Fix for error in DeallocationHelper on Java version 9-internal

This commit is contained in:
zzz
2016-10-28 15:18:08 +00:00
parent 51e35eb572
commit 95ae86d962
2 changed files with 10 additions and 1 deletions

View File

@ -174,6 +174,8 @@ class SummaryListener implements RateSummaryListener {
rrdFile.delete();
} catch (IOException ioe) {
_log.error("Error starting RRD for stat " + baseName, ioe);
} catch (Throwable t) {
_log.error("Error starting RRD for stat " + baseName, t);
}
return false;
}