Skip to content

Commit

Permalink
fix bug in logging msg format string (#332)
Browse files Browse the repository at this point in the history
[ committed by @ankona ]
[ reviewed by @amandarichardsonn ]
  • Loading branch information
ankona authored Aug 1, 2023
1 parent b3484b6 commit c8ea7ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion smartsim/_core/control/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ def _launch_orchestrator(self, orchestrator: Orchestrator) -> None:
create_cluster(orchestrator.hosts, orchestrator.ports)
check_cluster_status(orchestrator.hosts, orchestrator.ports)
num_shards = orchestrator.num_shards
logger.info("Database cluster created with {} shards", num_shards)
logger.info(f"Database cluster created with {num_shards} shards")
cluster_created = True
except SSInternalError:
if num_trials > 0:
Expand Down

0 comments on commit c8ea7ea

Please # to comment.