HDDS-1839: Change topology sorting related logs in Pipeline from INFO to DEBUG. Contributed by Junjie Chen.
This closes #1158.
This commit is contained in:
parent
c0a0c353e8
commit
c7c7a889a8
|
@ -192,7 +192,7 @@ public final class Pipeline {
|
|||
}
|
||||
}
|
||||
}
|
||||
LOG.info("Serialize pipeline {} with nodesInOrder{ }", id.toString(),
|
||||
LOG.debug("Serialize pipeline {} with nodesInOrder{ }", id.toString(),
|
||||
nodes);
|
||||
}
|
||||
return builder.build();
|
||||
|
@ -339,7 +339,7 @@ public final class Pipeline {
|
|||
nodeIndex--;
|
||||
}
|
||||
}
|
||||
LOG.info("Deserialize nodesInOrder {} in pipeline {}", nodesWithOrder,
|
||||
LOG.debug("Deserialize nodesInOrder {} in pipeline {}", nodesWithOrder,
|
||||
id.toString());
|
||||
pipeline.setNodesInOrder(nodesWithOrder);
|
||||
} else if (nodesInOrder != null){
|
||||
|
|
Loading…
Reference in New Issue