diff options
author | Matt Turner <mattst88@gentoo.org> | 2021-01-23 20:54:16 -0500 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2021-01-27 21:06:46 -0500 |
commit | 2d348c2e9d063662a9fd4526d77fd28cacf233ce (patch) | |
tree | 44cd143bc81b10b3fddd2fed4db5b65895c706b2 | |
parent | catalyst: Remove unused import (diff) | |
download | catalyst-2d348c2e9d063662a9fd4526d77fd28cacf233ce.tar.gz catalyst-2d348c2e9d063662a9fd4526d77fd28cacf233ce.tar.bz2 catalyst-2d348c2e9d063662a9fd4526d77fd28cacf233ce.zip |
catalyst: Use lazy % formatting in logging functions
Signed-off-by: Matt Turner <mattst88@gentoo.org>
-rw-r--r-- | catalyst/base/stagebase.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py index 25efd4b3..28ff8fd2 100644 --- a/catalyst/base/stagebase.py +++ b/catalyst/base/stagebase.py @@ -823,7 +823,7 @@ class StageBase(TargetBase, ClearBase, GenBase): repo_conf_chroot = self.to_chroot(repo_conf) repo_conf_chroot.parent.mkdir(mode=0o755, parents=True, exist_ok=True) - log.info(f'Creating repo config {repo_conf_chroot}.') + log.info('Creating repo config %s.', repo_conf_chroot) try: with open(repo_conf_chroot, 'w') as f: @@ -846,10 +846,10 @@ class StageBase(TargetBase, ClearBase, GenBase): location_chroot = self.to_chroot(location) location_chroot.mkdir(mode=0o755, parents=True, exist_ok=True) - log.info(f'Copying overlay dir {x} to {location_chroot}') + log.info('Copying overlay dir %s to %s', x, location_chroot) cmd(f'cp -a {x}/* {location_chroot}', env=self.env) else: - log.warning(f'Skipping missing overlay {x}.') + log.warning('Skipping missing overlay %s.', x) def root_overlay(self): """ Copy over the root_overlay """ |