Merge -r 1356329:1356330 from trunk to branch. FIXES: HDFS-3575
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1356332 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2de013e0a8
commit
1142e13bd4
|
@ -91,7 +91,7 @@ public class HttpFSExceptionProvider extends ExceptionProvider {
|
||||||
String path = MDC.get("path");
|
String path = MDC.get("path");
|
||||||
String message = getOneLineMessage(throwable);
|
String message = getOneLineMessage(throwable);
|
||||||
AUDIT_LOG.warn("FAILED [{}:{}] response [{}] {}", new Object[]{method, path, status, message});
|
AUDIT_LOG.warn("FAILED [{}:{}] response [{}] {}", new Object[]{method, path, status, message});
|
||||||
LOG.warn("[{}:{}] response [{}] {}", new Object[]{method, path, status, message, throwable});
|
LOG.warn("[{}:{}] response [{}] {}", new Object[]{method, path, status, message}, throwable);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -245,6 +245,8 @@ Release 2.0.1-alpha - UNRELEASED
|
||||||
block in a namenode and the reported block from a datanode do not match.
|
block in a namenode and the reported block from a datanode do not match.
|
||||||
(Ashish Singhi via szetszwo)
|
(Ashish Singhi via szetszwo)
|
||||||
|
|
||||||
|
HDFS-3575. HttpFS does not log Exception Stacktraces (brocknoland via tucu)
|
||||||
|
|
||||||
BREAKDOWN OF HDFS-3042 SUBTASKS
|
BREAKDOWN OF HDFS-3042 SUBTASKS
|
||||||
|
|
||||||
HDFS-2185. HDFS portion of ZK-based FailoverController (todd)
|
HDFS-2185. HDFS portion of ZK-based FailoverController (todd)
|
||||||
|
|
Loading…
Reference in New Issue