summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorMatt Jordan <mjordan@digium.com>2015-07-19 10:57:59 -0500
committerGerrit Code Review <gerrit2@gerrit.digium.api>2015-07-19 10:58:00 -0500
commit0047ca8c84e428fffd0164bdb22f68c565c29696 (patch)
treed15b15bead189b1f6ec3dc8d424d0d68ff060dfa /res
parentbd3515abafd09e66a8397117876468cfab7a9ad9 (diff)
parent8b503f2a10abeaa55a2ade9b7a2d07cc86c78b4c (diff)
Merge "res/res_musiconhold: Add a warning when MOH does not exist"
Diffstat (limited to 'res')
-rw-r--r--res/res_musiconhold.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_musiconhold.c b/res/res_musiconhold.c
index eaf1f4ea8..bf7635ea2 100644
--- a/res/res_musiconhold.c
+++ b/res/res_musiconhold.c
@@ -881,7 +881,7 @@ static struct mohclass *_get_mohbyname(const char *name, int warn, int flags, co
"get_mohbyname", file, lineno, funcname);
if (!moh && warn) {
- ast_debug(1, "Music on Hold class '%s' not found in memory\n", name);
+ ast_log(LOG_WARNING, "Music on Hold class '%s' not found in memory. Verify your configuration.\n", name);
}
return moh;