Skip to content

Commit

Permalink
Disable legacy client round logging (#3221)
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesbvll authored Apr 5, 2024
1 parent 1336aa9 commit ccaeb70
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions src/py/flwr/client/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -456,12 +456,13 @@ def _load_client_app() -> ClientApp:
continue

log(INFO, "")
log(
INFO,
"[RUN %s, ROUND %s]",
message.metadata.run_id,
message.metadata.group_id,
)
if len(message.metadata.group_id) > 0:
log(
INFO,
"[RUN %s, ROUND %s]",
message.metadata.run_id,
message.metadata.group_id,
)
log(
INFO,
"Received: %s message %s",
Expand Down

0 comments on commit ccaeb70

Please sign in to comment.