You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-dev@hadoop.apache.org by "Lisheng Sun (JIRA)" <ji...@apache.org> on 2019/07/15 07:26:00 UTC

[jira] [Created] (HADOOP-16431) Change Log Level to trace in IOUtils.java and ExceptionDiags.java

Lisheng Sun created HADOOP-16431:
------------------------------------

             Summary: Change Log Level to trace in IOUtils.java and ExceptionDiags.java
                 Key: HADOOP-16431
                 URL: https://issues.apache.org/jira/browse/HADOOP-16431
             Project: Hadoop Common
          Issue Type: Improvement
            Reporter: Lisheng Sun


When there is no String Constructor for the exception, we Log a Warn Message, and rethrow the exception. We can change the Log level to TRACE/DEBUG.
{code:java}
private static <T extends IOException> T wrapWithMessage(
  T exception, String msg) {
  Class<? extends Throwable> clazz = exception.getClass();
  try {
    Constructor<? extends Throwable> ctor =
      clazz.getConstructor(String.class);
    Throwable t = ctor.newInstance(msg);
    return (T) (t.initCause(exception));
  } catch (Throwable e) {
    LOG.trace("Unable to wrap exception of type " +
             clazz + ": it has no (String) constructor", e);
    return exception;
  }
}
{code}



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

---------------------------------------------------------------------
To unsubscribe, e-mail: common-dev-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-dev-help@hadoop.apache.org