diff --git a/channels/sip/sdp_crypto.c b/channels/sip/sdp_crypto.c index c27e882c277696f4145dc2a3b3d921c266bc8700..8a0d38a42393b407ea5ce06e9eb82adedab89bd7 100644 --- a/channels/sip/sdp_crypto.c +++ b/channels/sip/sdp_crypto.c @@ -282,7 +282,7 @@ int sdp_crypto_process(struct sdp_crypto *p, const char *attr, struct ast_rtp_in } if (!p->tag) { - ast_log(LOG_DEBUG, "Accepting crypto tag %s\n", tag); + ast_debug(1, "Accepting crypto tag %s\n", tag); p->tag = ast_strdup(tag); if (!p->tag) { ast_log(LOG_ERROR, "Could not allocate memory for tag\n"); @@ -307,7 +307,7 @@ int sdp_crypto_offer(struct sdp_crypto *p, int taglen) return -1; } - ast_log(LOG_DEBUG, "Crypto line: %s", p->a_crypto); + ast_debug(1, "Crypto line: %s", p->a_crypto); return 0; }