Fix logging to individual files
This commit is contained in:
parent
2fcd640a8d
commit
23f1da515b
1 changed files with 8 additions and 0 deletions
|
@ -20,12 +20,20 @@ class LoggingManager():
|
||||||
print("Failed to create log file")
|
print("Failed to create log file")
|
||||||
return
|
return
|
||||||
|
|
||||||
|
# Set root the logging options.
|
||||||
logging.basicConfig(
|
logging.basicConfig(
|
||||||
filename=filename,
|
filename=filename,
|
||||||
format='%(asctime)s | %(levelname)s | %(message)s',
|
format='%(asctime)s | %(levelname)s | %(message)s',
|
||||||
level=logging.INFO,
|
level=logging.INFO,
|
||||||
filemode='a'
|
filemode='a'
|
||||||
)
|
)
|
||||||
|
|
||||||
|
self.logger.setLevel(logging.INFO)
|
||||||
|
fh = logging.FileHandler(filename)
|
||||||
|
formatter = logging.Formatter('%(asctime)s | %(levelname)s | %(message)s')
|
||||||
|
fh.setFormatter(formatter)
|
||||||
|
# add the handler to the logger
|
||||||
|
self.logger.addHandler(fh)
|
||||||
self.logger.info("** LOGGER STARTED **")
|
self.logger.info("** LOGGER STARTED **")
|
||||||
|
|
||||||
def __del__(self):
|
def __del__(self):
|
||||||
|
|
Loading…
Reference in a new issue