HADOOP-15586. Fix wrong log statement in AbstractService. (Szilard Nemeth via Haibo Chen)

This commit is contained in:
Haibo Chen 2018-07-23 11:18:25 -07:00
parent 9d3c39e9dd
commit 17e26163ec
1 changed files with 1 additions and 1 deletions

View File

@ -254,7 +254,7 @@ public abstract class AbstractService implements Service {
* @param exception the exception
*/
protected final void noteFailure(Exception exception) {
LOG.debug("noteFailure {}" + exception);
LOG.debug("noteFailure", exception);
if (exception == null) {
//make sure failure logic doesn't itself cause problems
return;