Verified Commit 63dee343 authored by Tommaso Tocci's avatar Tommaso Tocci
Browse files

bugfix: log error on rpc error instead of warning

parent 2a118ef3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -148,7 +148,7 @@ int rpc_send_stat(const std::string& path, string& attr) {
    // Get response
    if (ret != HG_SUCCESS) {
        errno = EBUSY;
        CTX->log()->warn("{}() timed out");
        CTX->log()->error("{}() timed out");
        margo_destroy(handle);
        return -1;
    }