Skip to content
Snippets Groups Projects
Commit 67cc6956 authored by TJ Khoo's avatar TJ Khoo
Browse files

Add public tool list to ComponentAccumulator printConfig

Former-commit-id: 42fb905d
parent 9d6ccf7f
No related branches found
No related tags found
No related merge requests found
......@@ -84,6 +84,11 @@ class ComponentAccumulator(object):
self._msg.info( [ s.getName() for s in self._services ] )
self._msg.info( "Outputs" )
self._msg.info( self._outputPerStream )
self._msg.info( "Public Tools" )
self._msg.info( "[" )
for t in self._publicTools:
self._msg.info( " {0},".format(t.getFullName()) )
self._msg.info( "]" )
def addSequence(self, newseq, parentName = None ):
......
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