From 4514e835a5c9ba8a2034feeefa65bb7179eac603 Mon Sep 17 00:00:00 2001 From: Flos Lonicerae Date: Thu, 8 Aug 2024 18:16:08 +0800 Subject: [PATCH] Explicitly show the directory creation. --- repos/system_upgrade/common/libraries/mounting.py | 1 + 1 file changed, 1 insertion(+) diff --git a/repos/system_upgrade/common/libraries/mounting.py b/repos/system_upgrade/common/libraries/mounting.py index fd0790486f..a546e9d006 100644 --- a/repos/system_upgrade/common/libraries/mounting.py +++ b/repos/system_upgrade/common/libraries/mounting.py @@ -34,6 +34,7 @@ class MountingMode(object): def _makedirs(path, mode=0o777, exists_ok=True): """ Helper function which extends os.makedirs with exists_ok on all versions of python. """ + api.current_logger().debug('Making dir:%s with mode:%o', path, mode) try: os.makedirs(path, mode=mode) except OSError: