Merge branch 'master' into V3_GQRX_Improvements

This commit is contained in:
Logan Cusano
2022-04-09 03:27:23 -04:00

View File

@@ -244,10 +244,10 @@ def init_global_logger(_verbose_level: str = "WARNING"):
if not exists("./logs/"):
os.mkdir("./logs/")
fh = logging.FileHandler(f'./logs/DRB-{date.today()}.log')
fh.setLevel(logging.DEBUG)
fh.setLevel(logging.INFO)
fh_debug = logging.FileHandler(f'./logs/DRB-{date.today()}.DEBUG.log')
fh_debug.setLevel(logging.WARNING)
fh_debug.setLevel(logging.DEBUG)
# create terminal handler with a higher log level
th = logging.StreamHandler()