Skip to content
Snippets Groups Projects
Commit 5875ca1a authored by Nelson Tavares de Sousa's avatar Nelson Tavares de Sousa
Browse files

changed logger level

parent 7b099195
No related branches found
No related tags found
No related merge requests found
...@@ -94,7 +94,9 @@ class A3PipeInstantiation implements ITraverserVisitor { ...@@ -94,7 +94,9 @@ class A3PipeInstantiation implements ITraverserVisitor {
@Override @Override
public void visit(final DummyPipe pipe, final AbstractPort<?> port) { public void visit(final DummyPipe pipe, final AbstractPort<?> port) {
LOGGER.debug("Unconnected port " + port + " in stage " + port.getOwningStage().getId()); if (LOGGER.isInfoEnabled()) {
LOGGER.info("Unconnected port " + port + " in stage " + port.getOwningStage().getId());
}
} }
} }
wiki @ 709c839c
Subproject commit 709c839c447a50c93b37fcc633a01297115d4823
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment