This is an automated email from the ASF dual-hosted git repository. billblough pushed a commit to branch 29092007 in repository https://gitbox.apache.org/repos/asf/axis-axis2-c-core.git
commit ed59a98694226ba819afa7805a232e81060a8c41 Author: Damitha N.M. Kumarage <[email protected]> AuthorDate: Mon Oct 22 00:29:56 2007 +0000 Improved the log message --- src/core/deployment/conf_init.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/core/deployment/conf_init.c b/src/core/deployment/conf_init.c index 4da158f..9016db6 100644 --- a/src/core/deployment/conf_init.c +++ b/src/core/deployment/conf_init.c @@ -232,10 +232,11 @@ axis2_load_services( axutil_allocator_switch_to_local_pool(env->allocator); if(!status) { - AXIS2_LOG_ERROR(env->log, AXIS2_LOG_SI, "Service "\ - "%s initialization Failed. So exiting "\ - "conf_init()", axis2_svc_get_name(svc_desc, - env)); + AXIS2_LOG_ERROR(env->log, AXIS2_LOG_SI, + "Initialization failed for the service %s. "\ + "Check the service's init_with_conf() "\ + "function for errors and retry", + axis2_svc_get_name(svc_desc, env)); } } }
