From 903fa31d6aad0fed1e718ad464d7958c541dd686 Mon Sep 17 00:00:00 2001 From: acki Date: Mon, 15 Dec 2025 20:22:53 +0100 Subject: [PATCH] log --- src/modelec_com/src/pcb_action_interface.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modelec_com/src/pcb_action_interface.cpp b/src/modelec_com/src/pcb_action_interface.cpp index 320c24b..953af4b 100644 --- a/src/modelec_com/src/pcb_action_interface.cpp +++ b/src/modelec_com/src/pcb_action_interface.cpp @@ -510,9 +510,9 @@ namespace Modelec { if (IsOk()) { - // RCLCPP_INFO(this->get_logger(), "Sending to PCB: %s", trim(data).c_str()); - RCLCPP_INFO_ONCE(this->get_logger(), "Sending to PCB: %s", trim(data).c_str()); - RCLCPP_DEBUG_SKIPFIRST(this->get_logger(), "Sending to PCB: %s", data.c_str()); + RCLCPP_INFO(this->get_logger(), "Sending to PCB: %s", trim(data).c_str()); + // RCLCPP_INFO_ONCE(this->get_logger(), "Sending to PCB: %s", trim(data).c_str()); + // RCLCPP_DEBUG_SKIPFIRST(this->get_logger(), "Sending to PCB: %s", data.c_str()); this->write(data); } }