mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-12 00:26:52 +02:00
[core] TaskManager: improve log message in the compute method
It gives a better way to identify the error in QML.
This commit is contained in:
parent
2099bad017
commit
be49e37c0f
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ class TaskManager(BaseObject):
|
||||||
if chunksInConflict:
|
if chunksInConflict:
|
||||||
chunksStatus = set([chunk.status.status.name for chunk in chunksInConflict])
|
chunksStatus = set([chunk.status.status.name for chunk in chunksInConflict])
|
||||||
chunksName = [node.name for node in chunksInConflict]
|
chunksName = [node.name for node in chunksInConflict]
|
||||||
msg = 'WARNING: Some nodes are already submitted with status: {}\nNodes: {}'.format(
|
msg = 'TaskManager.compute(): WARNING - Some nodes are already submitted with status: {}\nNodes: {}'.format(
|
||||||
', '.join(chunksStatus),
|
', '.join(chunksStatus),
|
||||||
', '.join(chunksName)
|
', '.join(chunksName)
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue