From: Shyukri Shyukriev Date: Fri, 7 Jun 2019 12:09:19 +0000 (+0000) Subject: ceph-volume:util: Use proper param substition X-Git-Tag: v14.2.3~156^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=ee902e2fe371141363edb01efb0c460f376f623b;p=ceph.git ceph-volume:util: Use proper param substition Fixes: https://tracker.ceph.com/issues/25030 Signed-off-by: Shyukri Shyukriev (cherry picked from commit 654660cd89fe9d93087d390805651c860bf4e862) --- diff --git a/src/ceph-volume/ceph_volume/util/system.py b/src/ceph-volume/ceph_volume/util/system.py index b637f023a441..98f6fc42dd43 100644 --- a/src/ceph-volume/ceph_volume/util/system.py +++ b/src/ceph-volume/ceph_volume/util/system.py @@ -214,9 +214,9 @@ def device_is_mounted(dev, destination=None): ) return True else: - logger.info('%s was found as mounted') + logger.info('%s was found as mounted', dev) return True - logger.info('%s was not found as mounted') + logger.info('%s was not found as mounted', dev) return False