Skip to content

Commit

Permalink
fix successful_publication log line (#8446)
Browse files Browse the repository at this point in the history
  • Loading branch information
novicecpp authored May 30, 2024
1 parent f499fd5 commit 9198587
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python/Publisher/PublisherMaster.py
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ def startSlave(self, task): # pylint: disable=too-many-branches, too-many-local
logger.info('Taskname %s is OK. Nothing to do', taskname)
else:
msg = f"Taskname {taskname} is OK. Published {summary['publishedFiles']} "
msg += f"in {summary['publishedBlocks']} blocks."
msg += f"files in {summary['publishedBlocks']} blocks."
if summary['nextIterFiles']:
msg += f" {summary['nextIterFiles']} files left for next iteration."
logger.info(msg)
Expand Down

0 comments on commit 9198587

Please sign in to comment.