Fixing Logger

This commit is contained in:
itdominator 2022-01-24 22:16:25 -06:00
parent 256c923751
commit 628c146297
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ import os, logging
class Logger:
def __init__(config_path):
def __init__(self, config_path):
self._CONFIG_PATH = config_path
def get_logger(self, loggerName = "NO_LOGGER_NAME_PASSED", createFile = True):