Skip to content

Commit

Permalink
hotfix: remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
TaehyunYoon-TIM committed Dec 19, 2024
1 parent 1de9505 commit 3781486
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/async_port/async_can.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ void AsyncCAN::SendFrame(const struct can_frame &frame) {
asio::buffer(&frame, sizeof(frame)),
[](asio::error_code error, size_t bytes_transferred) {
if (error) {
std::cerr << "Failed to send CAN frame" << std::endl;
//std::cerr << "Failed to send CAN frame" << std::endl;
}
// std::cout << "frame sent" << std::endl;
});
Expand Down

0 comments on commit 3781486

Please sign in to comment.