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 sa...@apache.org on 2006/02/10 07:05:54 UTC

svn commit: r376572 - /webservices/axis2/trunk/c/samples/client/echo/echo_client.c

Author: samisa
Date: Thu Feb  9 22:05:52 2006
New Revision: 376572

URL: http://svn.apache.org/viewcvs?rev=376572&view=rev
Log:
Changed log level to enable trace

Modified:
    webservices/axis2/trunk/c/samples/client/echo/echo_client.c

Modified: webservices/axis2/trunk/c/samples/client/echo/echo_client.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/samples/client/echo/echo_client.c?rev=376572&r1=376571&r2=376572&view=diff
==============================================================================
--- webservices/axis2/trunk/c/samples/client/echo/echo_client.c (original)
+++ webservices/axis2/trunk/c/samples/client/echo/echo_client.c Thu Feb  9 22:05:52 2006
@@ -39,9 +39,9 @@
     
     allocator = axis2_allocator_init (NULL);
     error = axis2_error_create(allocator);
-    log = axis2_log_create(allocator, NULL, "echo_client.log");
+    log = axis2_log_create(allocator, NULL, "/dev/stderr");
     env = axis2_env_create_with_error_log(allocator, error, log);
-    env->log->level = AXIS2_LOG_LEVEL_INFO;
+    env->log->level = AXIS2_LOG_LEVEL_TRACE;
     axis2_error_init();
 
     client_home = AXIS2_GETENV("AXIS2C_HOME");