index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2021-05-19 14:45:13 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-19 16:45:13 +0200 |
commit | 49e6cbdc545402e066bdc2daf6054abf6c1bf977 (patch) | |
tree | a1d4afcc6473d93bc958eab8241dbad616033dba /archinstall/lib/output.py | |
parent | 52960bd686c92af4813ce302a21eb63a5aa67343 (diff) |
-rw-r--r-- | archinstall/lib/output.py | 2 |
diff --git a/archinstall/lib/output.py b/archinstall/lib/output.py index 20b0df8d..595e9693 100644 --- a/archinstall/lib/output.py +++ b/archinstall/lib/output.py @@ -155,7 +155,7 @@ def log(*args, **kwargs): log("Deprecated level detected in log message, please use new logging.<level> instead for the following log message:", fg="red", level=logging.ERROR, force=True) kwargs['level'] = logging.DEBUG - if kwargs['level'] > storage.get('LOG_LEVEL', logging.INFO) and 'force' not in kwargs: + if kwargs['level'] < storage.get('LOG_LEVEL', logging.INFO) and 'force' not in kwargs: # Level on log message was Debug, but output level is set to Info. # In that case, we'll drop it. return None |