From: Anthony Minessale Date: Sun, 26 Mar 2017 14:58:28 +0000 (-0400) Subject: FS-10180: [mod_sofia] Move debug line to higher level #resolve X-Git-Tag: v1.8.0~676 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=778190ffafaeb43b8ce7a16bea5fc25c5915845c;p=thirdparty%2Ffreeswitch.git FS-10180: [mod_sofia] Move debug line to higher level #resolve --- diff --git a/src/mod/endpoints/mod_sofia/sofia_presence.c b/src/mod/endpoints/mod_sofia/sofia_presence.c index 19d1fc7d9b..00d197ec18 100644 --- a/src/mod/endpoints/mod_sofia/sofia_presence.c +++ b/src/mod/endpoints/mod_sofia/sofia_presence.c @@ -2906,7 +2906,7 @@ static int sofia_presence_sub_callback(void *pArg, int argc, char **argv, char * if (!strcmp(direction, "inbound") && strcmp(sub_to_user, caller)) { // If inbound and the entity is not the caller (i.e. internal to FS), then the direction is reversed // because it is not going through the B2BUA - switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "sofia_presence_sub_callback: endpt is internal\n"); + switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG1, "sofia_presence_sub_callback: endpt is internal\n"); direction = !strcasecmp(direction, "outbound") ? "inbound" : "outbound"; }