Browse Source

now errors before the bot actually starts up successfully are logged

master
jcao219 13 years ago
parent
commit
6533aaf0a5
  1. 7
      wolfbot.py

7
wolfbot.py

@ -78,7 +78,7 @@ def __unhandled__(cli, prefix, cmd, *args): @@ -78,7 +78,7 @@ def __unhandled__(cli, prefix, cmd, *args):
def main():
if not botconfig.DEBUG_MODE:
logging.basicConfig(filename='errors.log', filemode='w', level=logging.WARNING)
logging.basicConfig(filename='errors.log', filemode='a', level=logging.WARNING)
else:
logging.basicConfig(level=logging.DEBUG)
@ -96,4 +96,7 @@ def main(): @@ -96,4 +96,7 @@ def main():
if __name__ == "__main__":
main()
try:
main()
except:
logging.error(traceback.format_exc())
Loading…
Cancel
Save