Merge "app_chanspy.c: Reduce log message level from notice to verbose." into 16

This commit is contained in:
George Joseph 2020-01-07 10:38:16 -06:00 committed by Gerrit Code Review
commit a71f32943c
1 changed files with 2 additions and 1 deletions

View File

@ -509,7 +509,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));
if (ast_test_flag(flags, OPTION_READONLY)) {
ast_set_flag(audiohook, AST_AUDIOHOOK_MUTE_WRITE);