From ab69cb752595de1a020ff5e809f6166db9dbf00d Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Wed, 4 Nov 2020 23:45:45 +0000 Subject: Cleaned up some logic. How the LOG_LEVEL is fetched from the storage. --- archinstall/lib/output.py | 24 ++++++++---------------- 1 file changed, 8 insertions(+), 16 deletions(-) (limited to 'archinstall') diff --git a/archinstall/lib/output.py b/archinstall/lib/output.py index bba02cd7..215ebe45 100644 --- a/archinstall/lib/output.py +++ b/archinstall/lib/output.py @@ -2,6 +2,7 @@ import abc import os import sys import logging +from .storage import storage class LOG_LEVELS: Critical = 0b001 @@ -72,25 +73,16 @@ def stylize_output(text :str, *opts, **kwargs): text = '%s\x1b[%sm' % (text or '', RESET) return '%s%s' % (('\x1b[%sm' % ';'.join(code_list)), text or '') -GLOB_IMP_ERR_NOTIFIED = False def log(*args, **kwargs): if 'level' in kwargs: - try: - import archinstall - if 'LOG_LEVEL' not in archinstall.storage: - archinstall.storage['LOG_LEVEL'] = LOG_LEVELS.Info - - if kwargs['level'] >= archinstall.storage['LOG_LEVEL']: - # Level on log message was Debug, but output level is set to Info. - # In that case, we'll drop it. - return None - except ModuleNotFoundError: - global GLOB_IMP_ERR_NOTIFIED - - if GLOB_IMP_ERR_NOTIFIED is False: - print('[Error] Archinstall not found in global import path. Can not determain log level for log messages.') + if 'LOG_LEVEL' not in storage: + storage['LOG_LEVEL'] = LOG_LEVELS.Info - GLOB_IMP_ERR_NOTIFIED = True + if kwargs['level'] >= storage['LOG_LEVEL']: + print(f"Level {kwargs['level']} is higher than storage log level {storage['LOG_LEVEL']}.") + # Level on log message was Debug, but output level is set to Info. + # In that case, we'll drop it. + return None string = orig_string = ' '.join([str(x) for x in args]) -- cgit v1.2.3-54-g00ecf