Commit 22be9b51 authored by Eisenhauer, Greg's avatar Eisenhauer, Greg
Browse files

Downgrade noisy RDMA debug messages from DPCriticalVerbose to DPTraceVerbose



The "falling out of make_some_progress" and "fi_cq_signal failed" messages
were tagged as critical but are routine debug/shutdown traces that flood
output when verbose is off.

Co-Authored-By: default avatarClaude Opus 4.6 (1M context) <noreply@anthropic.com>
parent 266085d6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -257,7 +257,7 @@ static void make_some_progress(struct cq_manual_progress *params, int timeout,
            cq_manual_progress_push(params, next_item);
        }
    }
    params->Svcs->verbose(params->Stream, DPCriticalVerbose, "falling out of make_some_progress\n");
    params->Svcs->verbose(params->Stream, DPTraceVerbose, "falling out of make_some_progress\n");
}

static void *make_progress(void *params_)
@@ -781,7 +781,7 @@ static void fini_fabric(struct fabric_state *fabric, CP_Services Svcs, void *CP_
        result = fi_cq_signal(fabric->cq_signal);
        if (result != FI_SUCCESS)
        {
            Svcs->verbose(CP_Stream, DPCriticalVerbose, "fi_cq_signal failed with %d (%s).\n",
            Svcs->verbose(CP_Stream, DPTraceVerbose, "fi_cq_signal failed with %d (%s).\n",
                          result, fi_strerror(result));
            if (fabric->pthread_id)
            {