Add logger to class
This commit is contained in:
parent
9a90c17ba9
commit
11692ab64f
@ -3,7 +3,7 @@
|
|||||||
from argparse import ArgumentParser, BooleanOptionalAction
|
from argparse import ArgumentParser, BooleanOptionalAction
|
||||||
from configparser import ConfigParser
|
from configparser import ConfigParser
|
||||||
from getpass import getpass
|
from getpass import getpass
|
||||||
from logging import DEBUG, INFO, basicConfig
|
from logging import DEBUG, INFO, basicConfig, getLogger
|
||||||
from os import environ
|
from os import environ
|
||||||
from os.path import exists
|
from os.path import exists
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
@ -79,6 +79,7 @@ class Bot(ClientXMPP):
|
|||||||
basicConfig(
|
basicConfig(
|
||||||
level=self.args.log_level, format="%(levelname)-8s %(message)s"
|
level=self.args.log_level, format="%(levelname)-8s %(message)s"
|
||||||
)
|
)
|
||||||
|
self.log = getLogger(__name__)
|
||||||
|
|
||||||
def read_config(self):
|
def read_config(self):
|
||||||
"""Read configuration for running bot."""
|
"""Read configuration for running bot."""
|
||||||
|
Reference in New Issue
Block a user