proper path constants, logging level constant, file & stream logging

This commit is contained in:
Xevion
2021-01-24 14:22:09 -06:00
parent bc1a6c5d7e
commit bf09c13d6c
6 changed files with 34 additions and 7 deletions

View File

@@ -4,8 +4,10 @@ from abc import ABC
import discord
from bot import constants
logger = logging.getLogger(__file__)
logger.setLevel(logging.DEBUG)
logger.setLevel(constants.LOGGING_LEVEL)
class BaseMessage(object):