Some more logging to uncaught exceptions

This commit is contained in:
Ruud
2012-01-14 21:49:45 +01:00
parent f4a4bca7a9
commit e9094d4c6c
2 changed files with 10 additions and 1 deletions
+2 -1
View File
@@ -11,7 +11,8 @@ def runHandler(name, handler, *args, **kwargs):
try:
return handler(*args, **kwargs)
except:
log.error('Error in event "%s", that wasn\'nt caught: %s' % (name, traceback.format_exc()))
from couchpotato.environment import Env
log.error('Error in event "%s", that wasn\'nt caught: %s%s' % (name, traceback.format_exc(), Env.all()))
def addEvent(name, handler, priority = 100):
+8
View File
@@ -32,6 +32,14 @@ class Env(object):
def get(attr):
return getattr(Env, '_' + attr)
@staticmethod
def all():
ret = ''
for attr in ['encoding', 'debug', 'args', 'app_dir', 'data_dir', 'desktop', 'options']:
ret += '%s=%s ' % (attr, Env.get(attr))
return ret
@staticmethod
def set(attr, value):
return setattr(Env, '_' + attr, value)