From: Rishabh Dave Date: Tue, 2 Mar 2021 11:08:43 +0000 (+0530) Subject: qa/vstart_runner: dont log "not Ceph bin" msg too often X-Git-Tag: v17.1.0~2761^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F39780%2Fhead;p=ceph.git qa/vstart_runner: dont log "not Ceph bin" msg too often The message is logged everytime a binary not from Ceph repo's build directory is executed, which it too often. Signed-off-by: Rishabh Dave --- diff --git a/qa/tasks/vstart_runner.py b/qa/tasks/vstart_runner.py index 5d9c095c546..788db547d9e 100644 --- a/qa/tasks/vstart_runner.py +++ b/qa/tasks/vstart_runner.py @@ -420,10 +420,6 @@ class LocalRemote(object): local_bin = os.path.join(BIN_PREFIX, args[0]) if os.path.exists(local_bin): args = [local_bin] + args[1:] - else: - log.debug("'{0}' is not a binary in the Ceph build dir".format( - args[0] - )) log.debug('> ' + ' '.join([str(a.value) if isinstance(a, Raw) else a for a in args]))