]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
remote: Don't print a warning every time a remote call fails
authorCole Robinson <crobinso@redhat.com>
Thu, 8 Oct 2009 14:58:29 +0000 (10:58 -0400)
committerCole Robinson <crobinso@redhat.com>
Tue, 13 Oct 2009 14:56:42 +0000 (10:56 -0400)
$ sudo virsh pool-start idontexist
10:58:18.716: warning : processCallDispatchReply:7612 : Method call error
error: failed to get pool 'idontexist'
error: Storage pool not found: no pool with matching name 'idontexist'

That warning doesn't server much purpose being printed via a virsh call. So
remove the message.

src/remote/remote_driver.c

index 284593a62c58a7905935cd85969294c24d106bed..bf001ebdeba66bf0e2adf08f3b992174b6c82145 100644 (file)
@@ -7606,7 +7606,6 @@ processCallDispatchReply(virConnectPtr conn, struct private_data *priv,
         return 0;
 
     case REMOTE_ERROR:
-        VIR_WARN0("Method call error");
         memset (&thecall->err, 0, sizeof thecall->err);
         if (!xdr_remote_error (xdr, &thecall->err)) {
             error (in_open ? NULL : conn,