index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Daniel Girtler <blackrabbit256@gmail.com> | 2023-06-21 17:47:30 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-21 09:47:30 +0200 |
commit | 1b5ecb65aabe546cea51da1de7fad61ff1d32525 (patch) | |
tree | dff81650417ba8f66b648c5ac03e4312770c6efa /archinstall/lib/output.py | |
parent | 03d228fee8f850bb58249d23fd7c17f742a7701b (diff) |
-rw-r--r-- | archinstall/lib/output.py | 6 |
diff --git a/archinstall/lib/output.py b/archinstall/lib/output.py index b406d624..d266afa8 100644 --- a/archinstall/lib/output.py +++ b/archinstall/lib/output.py @@ -135,7 +135,7 @@ class Journald: log_adapter.log(level, message) -def check_log_permissions(): +def _check_log_permissions(): filename = storage.get('LOG_FILE', None) log_dir = storage.get('LOG_PATH', Path('./')) @@ -292,6 +292,10 @@ def log( reset: bool = False, font: List[Font] = [] ): + # leave this check here as we need to setup the logging + # right from the beginning when the modules are loaded + _check_log_permissions() + text = orig_string = ' '.join([str(x) for x in msgs]) # Attempt to colorize the output if supported |