Skip to content

Commit

Permalink
πŸ’„ Prettify param logging
Browse files Browse the repository at this point in the history
  • Loading branch information
falexwolf committed Jan 10, 2025
1 parent 4aed647 commit c0a4327
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lamindb/core/_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -352,8 +352,8 @@ def track(
run.save()
if params is not None:
run.params.add_values(params)
self._logging_message_track += "\n→ params: " + " ".join(
f"{key}='{value}'" for key, value in params.items()
self._logging_message_track += "\n→ params: " + ", ".join(
f"{key}={value}" for key, value in params.items()
)
self._run = run
track_environment(run)
Expand Down

0 comments on commit c0a4327

Please sign in to comment.