Open
Description
There are two major issues I saw
- the bot doesn't print relavant information regarding the bot state. Nothing to confirm it is operating, or what steps it took to get there.
- the bot prints out every message it receives, it seems that it is only needs to print out commands.
I implimented a "-q" on my version that allows the bot to print nothing using the code:
if "-q" in sys.argv:
f = open(os.devnull, 'w')
sys.stdout = f
Activity