[Zodb-checkins] CVS: Packages/ZEO - start.py:1.24
jeremy@digicool.com
jeremy@digicool.com
Fri, 1 Jun 2001 12:59:04 -0400 (EDT)
Update of /cvs-repository/Packages/ZEO
In directory korak.digicool.com:/tmp/cvs-serv26488
Modified Files:
start.py
Log Message:
Print a traceback to stderr in addition to logging when start fails
--- Updated File start.py in package Packages/ZEO --
--- start.py 2001/04/07 17:46:45 1.23
+++ start.py 2001/06/01 16:59:04 1.24
@@ -319,10 +319,10 @@
zLOG.LOG("z2", zLOG.PANIC, "Startup exception",
error=info)
except:
- info2=sys.exc_info()
- import traceback
- apply(traceback.print_exception, info)
- apply(traceback.print_exception, info2)
+ pass
+
+ import traceback
+ apply(traceback.print_exception, info)
sys.exit(0)