Update of /cvsroot/webware/Webware/WebKit
In directory usw-pr-cvs1:/tmp/cvs-serv10266
Modified Files:
AppServer.py
Log Message:
print the date/time the server is started.
Index: AppServer.py
===================================================================
RCS file: /cvsroot/webware/Webware/WebKit/AppServer.py,v
retrieving revision 1.41
retrieving revision 1.42
diff -C2 -d -r1.41 -r1.42
*** AppServer.py 2001/12/10 03:48:36 1.41
--- AppServer.py 2001/12/24 00:55:28 1.42
***************
*** 154,157 ****
--- 154,158 ----
print
print 'Process id is', os.getpid()
+ print 'Date/time is', time.asctime(time.localtime(time.time()))
print
if self.setting('PrintConfigAtStartUp'):
***************
*** 232,236 ****
# @@ 2000-07-10 ce: Resolve this with the version methods in Application
return '0.6.1b1' # @@ 2002-02-26 ce: should pull from Properties.py
-
def application(self):
--- 233,236 ----
|