now errors before the bot actually starts up successfully are logged
This commit is contained in:
parent
cb9bdafc57
commit
8c03005a88
@ -78,7 +78,7 @@ def __unhandled__(cli, prefix, cmd, *args):
|
|||||||
|
|
||||||
def main():
|
def main():
|
||||||
if not botconfig.DEBUG_MODE:
|
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:
|
else:
|
||||||
logging.basicConfig(level=logging.DEBUG)
|
logging.basicConfig(level=logging.DEBUG)
|
||||||
|
|
||||||
@ -96,4 +96,7 @@ def main():
|
|||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
try:
|
||||||
main()
|
main()
|
||||||
|
except:
|
||||||
|
logging.error(traceback.format_exc())
|
Loading…
x
Reference in New Issue
Block a user