aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLuca Deri <deri@ntop.org>2024-09-20 18:43:36 +0200
committerLuca Deri <deri@ntop.org>2024-09-20 18:44:05 +0200
commit08a37dc779dde9f85989459a946195e1d22914fc (patch)
treefd9cf40b53fe48c5c77ef23869630376b57456ef /src
parent80971e4a173a046adf0cab703387184f205bf596 (diff)
Replaced traces with debug messages
Diffstat (limited to 'src')
-rw-r--r--src/lib/protocols/stun.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/protocols/stun.c b/src/lib/protocols/stun.c
index a238e0a45..acc0e1e91 100644
--- a/src/lib/protocols/stun.c
+++ b/src/lib/protocols/stun.c
@@ -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);
}
@@ -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 {