From: Loic Dachary Date: Sun, 20 Sep 2015 19:54:59 +0000 (+0200) Subject: ceph-disk: reduce debug verbosity X-Git-Tag: v9.1.0~89^2^2~8 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=22a1f4cf74da5d520e392df2af9b9a521f490748;p=ceph.git ceph-disk: reduce debug verbosity There is no need for debug traces from which() and it is very noisy. Just get rid of it. Signed-off-by: Loic Dachary --- diff --git a/src/ceph-disk b/src/ceph-disk index 528cb5160553..3f009513c9a7 100755 --- a/src/ceph-disk +++ b/src/ceph-disk @@ -288,10 +288,8 @@ def which(executable): for location in locations: executable_path = os.path.join(location, executable) - LOG.debug('does ' + executable_path + ' exists ?') if (os.path.isfile(executable_path) and os.access(executable_path, os.X_OK)): - LOG.debug('yes, ' + executable_path + ' exists') return executable_path