Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change verbose logging output to DEBUG #1

Open
wants to merge 1 commit into
base: kinetic_ur_5_4
Choose a base branch
from
Open
Changes from all commits
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
4 changes: 2 additions & 2 deletions include/ur_modern_driver/ur/state_parser.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class URStateParser : public URParser<StatePacket>
message_type type;
bp.parse(packet_size);
bp.parse(type);
LOG_WARN("Received message type: %u", static_cast<uint8_t>(type));
LOG_DEBUG("Received message type: %u", static_cast<uint8_t>(type));
if (type != message_type::ROBOT_STATE)
{
// quietly ignore the intial version message
Expand All @@ -72,7 +72,7 @@ class URStateParser : public URParser<StatePacket>
return false;
}
uint32_t sub_size = bp.peek<uint32_t>();
LOG_INFO("Received package of size %" PRIu32, sub_size);
LOG_DEBUG("Received package of size %" PRIu32, sub_size);

if (!bp.checkSize(static_cast<size_t>(sub_size)))
{
Expand Down