HADOOP-11958. MetricsSystemImpl fails to show backtrace when an error occurs (Jason Lowe via jeagles)

This commit is contained in:
Jonathan Eagles 2015-06-24 14:51:04 -05:00
parent 2df00d53d1
commit 2236b577a3
2 changed files with 3 additions and 1 deletions

View File

@ -654,6 +654,8 @@ Release 2.8.0 - UNRELEASED
HADOOP-7139. Allow appending to existing SequenceFiles
(kanaka kumar avvaru via vinayakumarb)
HADOOP-11958. MetricsSystemImpl fails to show backtrace when an error
occurs (Jason Lowe via jeagles)
OPTIMIZATIONS
HADOOP-11785. Reduce the number of listStatus operation in distcp

View File

@ -367,7 +367,7 @@ public class MetricsSystemImpl extends MetricsSystem implements MetricsSource {
try {
onTimerEvent();
} catch (Exception e) {
LOG.warn(e);
LOG.warn("Error invoking metrics timer", e);
}
}
}, millis, millis);