Skip to content

Commit c7c7a88

Browse files
chenjunjiedadaxiaoyuyao
authored andcommitted
HDDS-1839: Change topology sorting related logs in Pipeline from INFO to DEBUG. Contributed by Junjie Chen.
This closes #1158.
1 parent c0a0c35 commit c7c7a88

File tree

1 file changed

+2
-2
lines changed
  • hadoop-hdds/common/src/main/java/org/apache/hadoop/hdds/scm/pipeline

1 file changed

+2
-2
lines changed

hadoop-hdds/common/src/main/java/org/apache/hadoop/hdds/scm/pipeline/Pipeline.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ public HddsProtos.Pipeline getProtobufMessage()
192192
}
193193
}
194194
}
195-
LOG.info("Serialize pipeline {} with nodesInOrder{ }", id.toString(),
195+
LOG.debug("Serialize pipeline {} with nodesInOrder{ }", id.toString(),
196196
nodes);
197197
}
198198
return builder.build();
@@ -339,7 +339,7 @@ public Pipeline build() {
339339
nodeIndex--;
340340
}
341341
}
342-
LOG.info("Deserialize nodesInOrder {} in pipeline {}", nodesWithOrder,
342+
LOG.debug("Deserialize nodesInOrder {} in pipeline {}", nodesWithOrder,
343343
id.toString());
344344
pipeline.setNodesInOrder(nodesWithOrder);
345345
} else if (nodesInOrder != null){

0 commit comments

Comments
 (0)