Skip to content

Commit

Permalink
Merge pull request #1748 from alicevision/fabiencastan-patch-1
Browse files Browse the repository at this point in the history
[core] fix logging of nodes loading
  • Loading branch information
fabiencastan authored Aug 23, 2022
2 parents 92e77e7 + d5b1d43 commit 906b7fc
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 906b7fc

Please sign in to comment.