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: