]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
ceph-disk: reduce debug verbosity
authorLoic Dachary <ldachary@redhat.com>
Sun, 20 Sep 2015 19:54:59 +0000 (21:54 +0200)
committerLoic Dachary <ldachary@redhat.com>
Tue, 22 Sep 2015 06:46:57 +0000 (08:46 +0200)
There is no need for debug traces from which() and it is very
noisy. Just get rid of it.

Signed-off-by: Loic Dachary <ldachary@redhat.com>
src/ceph-disk

index 528cb5160553a900c82a6a781b23f44d90c8db25..3f009513c9a7668cf02db270a478cb1433f7e3ed 100755 (executable)
@@ -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