Skip to content

Commit

Permalink
Merge pull request #2358 from ccppprogrammer/patch-1
Browse files Browse the repository at this point in the history
dialog: move "No matched dialogs" msg from LM_ERR to LM_DBG
(cherry picked from commit 0ad1df3)
  • Loading branch information
bogdan-iancu committed Jan 5, 2021
1 parent 7a12755 commit 06dd25c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/dialog/dialog.c
Expand Up @@ -1410,7 +1410,7 @@ static int w_get_dlg_info(struct sip_msg *msg, str *attr, pv_spec_t *attr_val,
}

if (n==0) {
LM_ERR("No matched dialogs \n");
LM_DBG("No matched dialogs\n");
return -1;
}

Expand Down Expand Up @@ -2106,7 +2106,7 @@ static int w_get_dlg_jsons_by_val(struct sip_msg *msg, str *attr, str *attr_val,
}

if (n==0) {
LM_ERR("No matched dialogs \n");
LM_DBG("No matched dialogs\n");
return -1;
}

Expand Down Expand Up @@ -2196,7 +2196,7 @@ static int w_get_dlg_jsons_by_profile(struct sip_msg *msg, str *attr, str *attr_
}

if (n==0) {
LM_ERR("No matched dialogs \n");
LM_DBG("No matched dialogs\n");
return -1;
}

Expand Down

0 comments on commit 06dd25c

Please sign in to comment.