You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by na...@apache.org on 2008/06/13 11:27:36 UTC

svn commit: r667439 - /webservices/axis2/trunk/c/util/src/class_loader.c

Author: nandika
Date: Fri Jun 13 02:27:36 2008
New Revision: 667439

URL: http://svn.apache.org/viewvc?rev=667439&view=rev
Log:
crash problem fixed

Modified:
    webservices/axis2/trunk/c/util/src/class_loader.c

Modified: webservices/axis2/trunk/c/util/src/class_loader.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/src/class_loader.c?rev=667439&r1=667438&r2=667439&view=diff
==============================================================================
--- webservices/axis2/trunk/c/util/src/class_loader.c (original)
+++ webservices/axis2/trunk/c/util/src/class_loader.c Fri Jun 13 02:27:36 2008
@@ -164,7 +164,8 @@
 #else
 		axis2_char_t buff[AXUTIL_WIN32_ERROR_BUFSIZE];
 		axutil_win32_get_last_error(buff, AXUTIL_WIN32_ERROR_BUFSIZE);
-		AXIS2_LOG_ERROR(env->log, AXIS2_LOG_SI, "Loading DLL failed: %s %s", buff);
+		AXIS2_LOG_ERROR(env->log, AXIS2_LOG_SI, "Loading shared library %s  Failed. DLERROR IS %s", 
+			dll_name, buff);
 #endif
 		AXIS2_ERROR_SET(env->error, AXIS2_ERROR_DLL_LOADING_FAILED,
                         AXIS2_FAILURE);