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:00:49 UTC

svn commit: r376571 - /webservices/axis2/trunk/c/modules/util/log.c

Author: samisa
Date: Thu Feb  9 22:00:48 2006
New Revision: 376571

URL: http://svn.apache.org/viewcvs?rev=376571&view=rev
Log:
Added some eye candy to help with locating traces

Modified:
    webservices/axis2/trunk/c/modules/util/log.c

Modified: webservices/axis2/trunk/c/modules/util/log.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/util/log.c?rev=376571&r1=376570&r2=376571&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/util/log.c (original)
+++ webservices/axis2/trunk/c/modules/util/log.c Thu Feb  9 22:00:48 2006
@@ -140,7 +140,7 @@
                 level_str = "[debug] ";
                 break;
             case AXIS2_LOG_LEVEL_TRACE:
-                level_str = "[trace] ";
+                level_str = "[...TRACE...] ";
                 break;
         }
 	  fprintf(stderr,"%s %s(%d) %s\n", level_str, file, line, buffer);
@@ -179,7 +179,7 @@
             level_str = "[debug] ";
             break;
         case AXIS2_LOG_LEVEL_TRACE:
-            level_str = "[trace] ";
+            level_str = "[...TRACE...] ";
             break;
     }
     if (file)