From be67432a5ef6ccc04e03ffe5a69da5f6c40e5f32 Mon Sep 17 00:00:00 2001 From: Thad House Date: Sun, 1 Jun 2025 22:21:11 -0700 Subject: [PATCH] [hal] Remove unnecessary print in CAN initialization (#8004) --- hal/src/main/native/systemcore/CAN.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/hal/src/main/native/systemcore/CAN.cpp b/hal/src/main/native/systemcore/CAN.cpp index 0c3aa82a4e..47ef5585a5 100644 --- a/hal/src/main/native/systemcore/CAN.cpp +++ b/hal/src/main/native/systemcore/CAN.cpp @@ -138,8 +138,6 @@ bool SocketCanState::InitializeBuses() { return; } - std::printf("Successfully bound to can interface %d\n", i); - auto poll = wpi::uv::Poll::Create(loop, socketHandle[i]); if (!poll) { success = false;