[Pvfs2-cvs] commit by slang in pvfs2/src/server: pvfs2-server.c

CVS commit program cvs at parl.clemson.edu
Mon Mar 12 17:20:29 EST 2007


Update of /projects/cvsroot/pvfs2/src/server
In directory parlweb1:/tmp/cvs-serv5688/src/server

Modified Files:
	pvfs2-server.c 
Log Message:
make gossip_debug_fp print to stderr with the right type of timestamp the way I want it to.


Index: pvfs2-server.c
===================================================================
RCS file: /projects/cvsroot/pvfs2/src/server/pvfs2-server.c,v
diff -p -u -r1.233 -r1.234
--- pvfs2-server.c	7 Mar 2007 07:22:36 -0000	1.233
+++ pvfs2-server.c	12 Mar 2007 22:20:29 -0000	1.234
@@ -457,7 +457,7 @@ int main(int argc, char **argv)
         goto server_shutdown;
     }
 
-    gossip_debug_fp(GOSSIP_MAX_DEBUG, stderr, 'S',
+    gossip_debug_fp(stderr, 'S', GOSSIP_LOGSTAMP_DATETIME,
                     "PVFS2 Server version %s starting...\n", PVFS2_VERSION);
 
     fs_conf = ((argc >= optind) ? argv[optind] : NULL);
@@ -585,7 +585,8 @@ int main(int argc, char **argv)
         goto server_shutdown;
     }
 
-    gossip_debug_fp(GOSSIP_MAX_DEBUG, stderr, 'S', "PVFS2 Server ready.\n");
+    gossip_debug_fp(stderr, 'S', GOSSIP_LOGSTAMP_DATETIME,
+                    "PVFS2 Server ready.\n");
 
     /* Initialization complete; process server requests indefinitely. */
     for ( ;; )  



More information about the Pvfs2-cvs mailing list