Skip to content

Commit

Permalink
disable debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
marenz2569 committed Jun 12, 2024
1 parent 246c828 commit 62c8c13
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/l2/lower_mac.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -336,9 +336,9 @@ auto LowerMac::process(const std::vector<uint8_t>& frame, BurstType burst_type)
UpperMacPackets packets;
try {
packets = UpperMacPacketBuilder::parseSlots(slots);
if (packets.has_user_or_control_plane_data()) {
std::cout << packets << std::endl;
}
// if (packets.has_user_or_control_plane_data()) {
// std::cout << packets << std::endl;
// }
} catch (std::runtime_error& e) {
std::cout << "Error decoding packets: " << e.what() << std::endl;
return;
Expand Down

0 comments on commit 62c8c13

Please sign in to comment.