Ver Fonte

added __TIME__

Dave Schuyler há 23 anos atrás
pai
commit
4dafee4be2

+ 1 - 1
direct/src/directdServer/directdClient.cxx

@@ -74,7 +74,7 @@ main(int argc, char *argv[]) {
     return 1;
   }
 
-  cerr<<"directdClient"<<endl;
+  cerr<<"directdClient "<<__DATE__<<" "<<__TIME__<<endl;
   string host="localhost";
   int port=8001;
   if (argc >= 3) {

+ 1 - 1
direct/src/directdServer/directdServer.cxx

@@ -107,7 +107,7 @@ main(int argc, char *argv[]) {
     return 1;
   }
 
-  cerr<<"directdServer "<<__DATE__<<endl;
+  cerr<<"directdServer "<<__DATE__<<" "<<__TIME__<<endl;
   int port=8001;
   if (argc > 1) {
     port=(atoi(argv[argc-1]));