I am using the Discum module of python, everything works but the console is spammed messages of the module, is there a way to disable this? here is a simple code piece
import discum
bot=discum.Client(token="atokenwhichisunneccesaryforthisquestion")
@bot.gateway.command
def pingpong(resp):
if resp.event.message:
m = resp.parsed.auto()
if m['content'] == 'a cool message':
print("whoop whoop anyone wrote a cool message!")
bot.gateway.run()