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 da...@apache.org on 2007/11/29 05:06:12 UTC

svn commit: r599257 - /webservices/axis2/trunk/c/util/src/env.c

Author: damitha
Date: Wed Nov 28 20:06:10 2007
New Revision: 599257

URL: http://svn.apache.org/viewvc?rev=599257&view=rev
Log:
In sample clients setting log levels does not change the default log level. ie. always default log level of DEBUG is on.
Fixed this in axutil_env_create_all function.

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

Modified: webservices/axis2/trunk/c/util/src/env.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/src/env.c?rev=599257&r1=599256&r2=599257&view=diff
==============================================================================
--- webservices/axis2/trunk/c/util/src/env.c (original)
+++ webservices/axis2/trunk/c/util/src/env.c Wed Nov 28 20:06:10 2007
@@ -176,7 +176,7 @@
                                                        thread_pool);
     if (env->log)
     {
-        if (AXIS2_LOG_LEVEL_TRACE <= log_level && log_level <= AXIS2_LOG_LEVEL_TRACE)
+        if (AXIS2_LOG_LEVEL_CRITICAL <= log_level && log_level <= AXIS2_LOG_LEVEL_TRACE)
         {
             env->log->level = log_level;
         }



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org