Skip to content

Commit

Permalink
Fixed a logging call error.
Browse files Browse the repository at this point in the history
  • Loading branch information
yhwen committed Apr 10, 2024
1 parent e980b60 commit 99595b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nvflare/private/fed/server/job_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ def run(self, fl_ctx: FLContext):
},
fl_ctx,
)
self.log_info(f"Updated the schedule history of Job: {job_id}")
self.log_info(fl_ctx, f"Updated the schedule history of Job: {job_id}")

if failed_clients:
deployable_clients = {k: v for k, v in client_sites.items() if k not in failed_clients}
Expand Down

0 comments on commit 99595b1

Please sign in to comment.