Skip to content

Commit

Permalink
Replaced traces with debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaderi committed Sep 20, 2024
1 parent 80971e4 commit 08a37dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/protocols/stun.c
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ static int is_new_subclassification_better(struct ndpi_detection_module_struct *
if(new_app_proto != NDPI_PROTOCOL_UNKNOWN &&
is_subclassification_real(flow) &&
new_app_proto != flow->detected_protocol_stack[0]) {
NDPI_LOG_ERR(ndpi_struct, "Incoherent sub-classification change %d/%d->%d \n",
NDPI_LOG_DBG(ndpi_struct, "Incoherent sub-classification change %d/%d->%d \n",
flow->detected_protocol_stack[1],
flow->detected_protocol_stack[0], new_app_proto);
}
Expand Down Expand Up @@ -850,7 +850,7 @@ static int stun_search_again(struct ndpi_detection_module_struct *ndpi_struct,
packet->payload_packet_len = orig_payload_length;

} else {
NDPI_LOG_ERR(ndpi_struct, "Invalid MS channel length %d %d\n",
NDPI_LOG_DBG(ndpi_struct, "Invalid MS channel length %d %d\n",
ch_len, packet->payload_packet_len - 4);
}
} else {
Expand Down

0 comments on commit 08a37dc

Please sign in to comment.