Just print error when loader didn't finish

This commit is contained in:
Ruud
2012-04-19 22:18:10 +02:00
parent 20b0334b8e
commit 4ae91fa17a
+6 -2
View File
@@ -114,6 +114,7 @@ class Loader(object):
if __name__ == '__main__':
l = None
try:
l = Loader()
l.daemonize()
@@ -135,7 +136,10 @@ if __name__ == '__main__':
try:
# if this fails we will have two tracebacks
# one for failing to log, and one for the exception that got us here.
l.log.critical(traceback.format_exc())
if l:
l.log.critical(traceback.format_exc())
else:
print traceback.format_exc()
except:
print traceback.format_exc()
raise
raise