Skip to content

Commit

Permalink
[core] fix logging of nodes loading
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiencastan authored Aug 3, 2022
1 parent 96b4ec8 commit d5b1d43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meshroom/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ def loadAllNodes(folder):
nodeTypes = loadNodes(folder, package)
for nodeType in nodeTypes:
registerNodeType(nodeType)
logging.debug('Plugins loaded: ', ', '.join([nodeType.__name__ for nodeType in nodeTypes]))
logging.debug('Nodes loaded [{}]: {}'.format(package, ', '.join([nodeType.__name__ for nodeType in nodeTypes])))


def registerSubmitter(s):
Expand Down

0 comments on commit d5b1d43

Please sign in to comment.