From b87d7f7adf62f9e038d2da4d84759d4e215db1a7 Mon Sep 17 00:00:00 2001 From: Brian West Date: Mon, 29 Sep 2008 00:39:07 +0000 Subject: [PATCH] clarify to match other code git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@9711 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/endpoints/mod_sofia/sofia.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mod/endpoints/mod_sofia/sofia.c b/src/mod/endpoints/mod_sofia/sofia.c index 7af8a41362..1078f6ced3 100644 --- a/src/mod/endpoints/mod_sofia/sofia.c +++ b/src/mod/endpoints/mod_sofia/sofia.c @@ -976,7 +976,8 @@ static void parse_domain_tag(sofia_profile_t *profile, switch_xml_t x_domain_tag if (sofia_glue_add_profile(switch_core_strdup(profile->pool, dname), profile) == SWITCH_STATUS_SUCCESS) { switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "Adding Alias [%s] for profile [%s]\n", dname, profile->name); } else { - switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Error Adding Alias [%s] for profile [%s] (name in use)\n", dname, profile->name); + switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Alias [%s] for profile [%s] (already exists)\n", + dname, profile->name); } }