From 2d04ce9f442cf124350ddc6b70d20f08a989ae90 Mon Sep 17 00:00:00 2001 From: Stefan Sayer Date: Mon, 19 Jul 2010 18:30:53 +0200 Subject: [PATCH] DSM: mon_select fallback debug level INFO -> DBG --- apps/dsm/DSM.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/dsm/DSM.cpp b/apps/dsm/DSM.cpp index d53203af..a10f7d38 100644 --- a/apps/dsm/DSM.cpp +++ b/apps/dsm/DSM.cpp @@ -536,7 +536,7 @@ void DSMFactory::runMonitorAppSelect(const AmSipRequest& req, string& start_diag if (MonSelectFallback.empty()) { \ throw AmSession::Exception(code, reason); \ } else { \ - INFO("falling back to '%s'\n", MonSelectFallback.c_str()); \ + DBG("falling back to '%s'\n", MonSelectFallback.c_str()); \ start_diag = MonSelectFallback; \ return; \ } @@ -615,7 +615,7 @@ void DSMFactory::runMonitorAppSelect(const AmSipRequest& req, string& start_diag if ((ret.getType()!=AmArg::Array)|| !ret.size()) { - INFO("call info not found. caller uri %s, r-uri %s\n", + DBG("call info not found. caller uri %s, r-uri %s\n", req.from_uri.c_str(), req.r_uri.c_str()); FALLBACK_OR_EXCEPTION(500, "Internal Server Error"); }