do not scare beginners with wrong message about disabling inbound/outbound calls (thanks Juha)

git-svn-id: http://svn.berlios.de/svnroot/repos/sems/trunk@1421 8eb893ce-cfd4-0310-b710-fb5ebe64c474
sayer/1.4-spce2.6
Stefan Sayer 17 years ago
parent 2074ae4f4a
commit a0b6f590be

@ -227,12 +227,12 @@ int DSMFactory::onLoad()
}
InboundStartDiag = cfg.getParameter("inbound_start_diag");
if (InboundStartDiag.empty()) {
INFO("no 'inbound_start_diag' set in config. inbound calls disabled.\n");
if (InboundStartDiag.empty() && register_names.empty()) {
INFO("no 'inbound_start_diag' set in config. inbound calls with application 'dsm' disabled.\n");
}
OutboundStartDiag = cfg.getParameter("outbound_start_diag");
if (OutboundStartDiag.empty()) {
INFO("no 'outbound_start_diag' set in config. outbound calls disabled.\n");
if (OutboundStartDiag.empty() && register_names.empty()) {
INFO("no 'outbound_start_diag' set in config. outbound calls with application 'dsm' disabled.\n");
}
if (!InboundStartDiag.empty() || OutboundStartDiag.empty())

Loading…
Cancel
Save