mirror of
https://github.com/MrDetonia/Maki.git
synced 2024-11-22 03:44:18 -05:00
Added logging, v0.12.0
This commit is contained in:
parent
e833078d06
commit
24498b5f1d
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
||||
secret.py
|
||||
__pycache__
|
||||
*.json
|
||||
*.log
|
||||
|
10
bot.py
10
bot.py
@ -13,6 +13,8 @@ import time
|
||||
import datetime
|
||||
import random
|
||||
import json
|
||||
import logging
|
||||
|
||||
import markov
|
||||
|
||||
# file in this directory called "secret.py" should contain these variables
|
||||
@ -25,7 +27,7 @@ from secret import email,pwd
|
||||
name = "Maki"
|
||||
|
||||
# bot version
|
||||
version = "v0.11.2"
|
||||
version = "v0.12.0"
|
||||
|
||||
# text shown by .help command
|
||||
helptext = """I am a bot written in Python by MrDetonia
|
||||
@ -86,6 +88,12 @@ if os.path.isfile('tells.json'):
|
||||
# this instance of the Discord client
|
||||
client = discord.Client()
|
||||
|
||||
# logging setup
|
||||
logger = logging.getLogger('discord')
|
||||
logger.setLevel(logging.DEBUG)
|
||||
handler = logging.FileHandler(filename='discord.log', encoding='utf-8', mode='w')
|
||||
handler.setFormatter(logging.Formatter('%(asctime)s:%(levelname)s:%(name)s: %(message)s'))
|
||||
logger.addHandler(handler)
|
||||
|
||||
# FUNCTIONS
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user