From: Michael Jerris Date: Mon, 16 Oct 2006 16:06:44 +0000 (+0000) Subject: Make error message more descriptive, and less antagonistic. X-Git-Tag: v1.0-beta1~1904 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=786cfc4557b08d8437eb0c7d8b4b11cc3bed9952;p=thirdparty%2Ffreeswitch.git Make error message more descriptive, and less antagonistic. git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3060 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/mod/applications/mod_dptools/mod_dptools.c b/src/mod/applications/mod_dptools/mod_dptools.c index 617b2427d5..bc73f8a178 100644 --- a/src/mod/applications/mod_dptools/mod_dptools.c +++ b/src/mod/applications/mod_dptools/mod_dptools.c @@ -124,7 +124,7 @@ static void privacy_function(switch_core_session_t *session, char *data) } else if (!strcasecmp(arg, "number")) { switch_set_flag(caller_profile, SWITCH_CPF_HIDE_NUMBER); } else { - switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "INVALID privacy mode specified. Use a valid mode ASSHAT\n"); + switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "INVALID privacy mode specified. Use a valid mode [no|yes|name|full|number].\n"); } switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Set Privacy to %s [%d]\n", arg, caller_profile->flags); }