HDFS-2675. Reduce warning verbosity when double-closing edit logs. Contributed by Todd Lipcon.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1214096 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b3dc6a9b92
commit
377c62a873
|
@ -55,6 +55,9 @@ Release 0.23.1 - UNRELEASED
|
|||
|
||||
HDFS-2654. Make BlockReaderLocal not extend RemoteBlockReader2. (eli)
|
||||
|
||||
HDFS-2675. Reduce warning verbosity when double-closing edit logs
|
||||
(todd)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
HDFS-2130. Switch default checksum to CRC32C. (todd)
|
||||
|
|
|
@ -166,7 +166,7 @@ public class FSEditLog {
|
|||
*/
|
||||
synchronized void close() {
|
||||
if (state == State.CLOSED) {
|
||||
LOG.warn("Closing log when already closed", new Exception());
|
||||
LOG.debug("Closing log when already closed");
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue