Skip to content

Commit

Permalink
Update logging
Browse files Browse the repository at this point in the history
  • Loading branch information
uweseimet committed Mar 3, 2024
1 parent 684d554 commit 08b3372
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/buses/bus.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ bool Bus::WaitSignal(int pin, bool state)
}
} while ((chrono::duration_cast < chrono::seconds > (chrono::steady_clock::now() - now).count()) < 3);

spdlog::trace("Timeout while waiting for ACK/REQ to change");
spdlog::trace("Timeout while waiting for ACK/REQ to change to {}", state ? "true" : "false");

return false;
}
Expand Down

0 comments on commit 08b3372

Please sign in to comment.