laforge submitted this change.
s1ap_proxy: clarify a logging statement, reduce verbosity
Logging all S1AP PDUs at INFO is way to verbose, use DEBUG.
Clarify that this is the Rx (receive) direction.
Change-Id: I325758c7fb632dc67d0d9cf1f2e58ca337e7a744
---
M src/s1ap_proxy.erl
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/s1ap_proxy.erl b/src/s1ap_proxy.erl
index 1df1518..c985601 100644
--- a/src/s1ap_proxy.erl
+++ b/src/s1ap_proxy.erl
@@ -82,7 +82,7 @@
handle_pdu(Data, S) when is_binary(Data) ->
case decode_pdu(Data) of
{ok, Pdu} ->
- ?LOG_INFO("S1AP PDU: ~p", [Pdu]),
+ ?LOG_DEBUG("Rx S1AP PDU: ~p", [Pdu]),
handle_pdu(Data, Pdu, S);
{error, {asn1, Error}} ->
?LOG_ERROR("S1AP PDU decoding failed: ~p", [Error]),
To view, visit change 38294. To unsubscribe, or for help writing mail filters, visit settings.