HDFS-13435. RBF: Improve the error loggings for printing the stack trace.

This commit is contained in:
Yiqun Lin 2018-04-17 11:23:22 +08:00
parent f1461b2487
commit c4d3636c21
7 changed files with 11 additions and 12 deletions

View File

@ -456,7 +456,7 @@ public class FederationMetrics implements FederationMBean {
dev = (float) Math.sqrt(dev / usages.length);
}
} catch (IOException e) {
LOG.info("Cannot get the live nodes: {}", e.getMessage());
LOG.error("Cannot get the live nodes: {}", e.getMessage());
}
final Map<String, Object> innerInfo = new HashMap<>();

View File

@ -210,8 +210,7 @@ public class LocalResolver extends RouterResolver<String, String> {
}
}
} catch (IOException ioe) {
LOG.error("Cannot get Namenodes from the State Store: {}",
ioe.getMessage());
LOG.error("Cannot get Namenodes from the State Store", ioe);
}
return ret;
}

View File

@ -100,7 +100,7 @@ public class RouterHeartbeatService extends PeriodicService {
LOG.debug("Router heartbeat for router {}", routerId);
}
} catch (IOException e) {
LOG.error("Cannot heartbeat router {}: {}", routerId, e.getMessage());
LOG.error("Cannot heartbeat router {}", routerId, e);
}
} else {
LOG.warn("Cannot heartbeat router {}: State Store unavailable", routerId);
@ -132,7 +132,7 @@ public class RouterHeartbeatService extends PeriodicService {
}
}
} catch (Exception e) {
LOG.error("Cannot get version for {}: {}", clazz, e.getMessage());
LOG.error("Cannot get version for {}", clazz, e);
}
return version;
}

View File

@ -1067,8 +1067,8 @@ public class RouterRpcClient {
results.put(location, clazz.cast(result));
} catch (CancellationException ce) {
T loc = orderedLocations.get(i);
String msg =
"Invocation to \"" + loc + "\" for \"" + method + "\" timed out";
String msg = "Invocation to \"" + loc + "\" for \""
+ method.getMethodName() + "\" timed out";
LOG.error(msg);
IOException ioe = new SubClusterTimeoutException(msg);
exceptions.put(location, ioe);

View File

@ -2293,7 +2293,7 @@ public class RouterRpcServer extends AbstractService
return entry.isAll();
}
} catch (IOException e) {
LOG.error("Cannot get mount point: {}", e.getMessage());
LOG.error("Cannot get mount point", e);
}
}
return false;
@ -2314,7 +2314,7 @@ public class RouterRpcServer extends AbstractService
return true;
}
} catch (IOException e) {
LOG.error("Cannot get mount point: {}", e.getMessage());
LOG.error("Cannot get mount point", e);
}
}
return false;
@ -2343,7 +2343,7 @@ public class RouterRpcServer extends AbstractService
ret.put(child, entry.getDateModified());
}
} catch (IOException e) {
LOG.error("Cannot get mount point: {}", e.getMessage());
LOG.error("Cannot get mount point", e);
}
}
return ret;

View File

@ -183,7 +183,7 @@ public class StateStoreService extends CompositeService {
} catch (NotCompliantMBeanException e) {
throw new RuntimeException("Bad StateStoreMBean setup", e);
} catch (MetricsException e) {
LOG.info("Failed to register State Store bean {}", e.getMessage());
LOG.error("Failed to register State Store bean {}", e.getMessage());
}
super.serviceInit(this.conf);

View File

@ -361,7 +361,7 @@ public abstract class StateStoreFileBaseImpl
try {
writer.close();
} catch (IOException e) {
LOG.error("Cannot close the writer for {}", recordPathTemp);
LOG.error("Cannot close the writer for {}", recordPathTemp, e);
}
}
}