]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
qa/vstart_runner: dont log "not Ceph bin" msg too often
authorRishabh Dave <ridave@redhat.com>
Tue, 2 Mar 2021 11:08:43 +0000 (16:38 +0530)
committerRishabh Dave <ridave@redhat.com>
Tue, 2 Mar 2021 11:11:09 +0000 (16:41 +0530)
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 <ridave@redhat.com>
qa/tasks/vstart_runner.py

index 5d9c095c546d71e825c5911308a2344473a23cf1..788db547d9e30298cdb37589fe7816b82e1c829e 100644 (file)
@@ -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]))