]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
update error message to explain more
authorAnthony Minessale <anthm@freeswitch.org>
Wed, 19 Sep 2012 15:14:32 +0000 (10:14 -0500)
committerAnthony Minessale <anthm@freeswitch.org>
Wed, 19 Sep 2012 15:14:38 +0000 (10:14 -0500)
src/mod/endpoints/mod_sofia/sofia.c

index ddbbead883b733b6c4e634cd585e9b3778055ff8..01fe061f8831259a30202731a5b13c7b55090e7a 100644 (file)
@@ -2491,7 +2491,9 @@ void *SWITCH_THREAD_FUNC sofia_profile_thread_run(switch_thread_t *thread, void
                                                          TAG_END());   /* Last tag should always finish the sequence */
        
        if (!profile->nua) {
-               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Error Creating SIP UA for profile: %s\n", profile->name);
+               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Error Creating SIP UA for profile: %s\n"
+                                                 "The likely causes for this are:\n" "1) Another application is already listening on the specified address.\n"
+                                                 "2) The IP the profile is attempting to bind to is not local to this system.", profile->name);
                sofia_profile_start_failure(profile, profile->name);
                sofia_glue_del_profile(profile);
                goto end;