Skip to content
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.

Fix case of logger format string specifier #1160

Merged
2 commits merged into from
Aug 23, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/api-service/__app__/onefuzzlib/workers/nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ def can_process_new_work(self) -> bool:
if self.state not in NodeState.can_process_new_work():
logging.info(
"can_process_new_work node not in appropriate state for new work"
"machine_id:%s state:%S",
"machine_id:%s state:%s",
self.machine_id,
self.state.name,
)
Expand Down