From b2030edc1560d14c8bf6f98acf4260f3bcf057ed Mon Sep 17 00:00:00 2001 From: Rishabh Dave Date: Tue, 2 Mar 2021 16:38:43 +0530 Subject: [PATCH] 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 --- qa/tasks/vstart_runner.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/qa/tasks/vstart_runner.py b/qa/tasks/vstart_runner.py index 5d9c095c546d..788db547d9e3 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])) -- 2.47.3