]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
app_chanspy.c: Reduce log message level from notice to verbose.
authorRichard Mudgett <rmudgett@digium.com>
Sun, 29 Dec 2019 23:48:55 +0000 (17:48 -0600)
committerRichard Mudgett <rmudgett@digium.com>
Mon, 6 Jan 2020 03:12:27 +0000 (21:12 -0600)
Change-Id: Ica5f38ccd8cdc077aef14d0c50425e0b29ac7e0a

apps/app_chanspy.c

index b78ebcb0f257b27029e16b96e6c3a78a5ae11d1d..56b5743ac41184e916f4433b398d0f97fef30d54 100644 (file)
@@ -501,7 +501,8 @@ static int start_spying(struct ast_autochan *autochan, const char *spychan_name,
        int res;
 
        ast_autochan_channel_lock(autochan);
-       ast_log(LOG_NOTICE, "Attaching %s to %s\n", spychan_name, ast_channel_name(autochan->chan));
+       ast_verb(3, "Attaching spy channel %s to %s\n",
+               spychan_name, ast_channel_name(autochan->chan));
 
        ast_set_flag(audiohook, AST_AUDIOHOOK_TRIGGER_SYNC | AST_AUDIOHOOK_SMALL_QUEUE);
        res = ast_audiohook_attach(autochan->chan, audiohook);