Reduce logging level

This commit is contained in:
Ske
2018-07-16 01:04:40 +02:00
parent 00fdcf32c2
commit 4bdc14e161
2 changed files with 3 additions and 2 deletions

View File

@@ -4,12 +4,12 @@ import os
import discord
logging.basicConfig(level=logging.DEBUG)
logging.basicConfig(level=logging.INFO)
logging.getLogger("discord").setLevel(logging.INFO)
logging.getLogger("websockets").setLevel(logging.INFO)
logger = logging.getLogger("pluralkit.bot")
logger.setLevel(logging.DEBUG)
logger.setLevel(logging.INFO)
client = discord.Client()