Only log the error message for SettingsError

This commit is contained in:
Stein Magnus Jodal 2011-06-10 14:18:38 +02:00
parent 51e43487c3
commit 8e983c337f

View File

@ -42,6 +42,8 @@ def main():
setup_frontends()
while True:
time.sleep(1)
except SettingsError as e:
logger.error(e.message)
except KeyboardInterrupt:
logger.info(u'Interrupted. Exiting...')
except Exception as e: