HADOOP-15586. Fix wrong log statement in AbstractService. (Szilard Nemeth via Haibo Chen)
This commit is contained in:
parent
9d3c39e9dd
commit
17e26163ec
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue