summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Jordan <mjordan@digium.com>2015-07-19 10:57:50 -0500
committerGerrit Code Review <gerrit2@gerrit.digium.api>2015-07-19 10:57:50 -0500
commit8a1d9a9f83e35896865cbbd0196a871c5472e84f (patch)
tree6d840cd724085c65dff5e4057c09ada86fa30e75
parent29de5b497ff076a125d766332e88decc100605b5 (diff)
parenta23adcca3d747f14590ddf7860f72418a4475866 (diff)
Merge "res/res_musiconhold: Add a warning when MOH does not exist" into 13
-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 cbeaab535..2ac5081b9 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
#endif
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;