Merge pull request #25480 from yashykt/reducelogseverity

Reduce log severity of cq operation failure message
pull/25486/head
Yash Tibrewal 4 years ago committed by GitHub
commit 7603a61bdc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/core/lib/surface/completion_queue.cc

@ -705,7 +705,7 @@ static void cq_end_op_for_next(
6, (cq, tag, errmsg, done, done_arg, storage)); 6, (cq, tag, errmsg, done, done_arg, storage));
if (GRPC_TRACE_FLAG_ENABLED(grpc_trace_operation_failures) && if (GRPC_TRACE_FLAG_ENABLED(grpc_trace_operation_failures) &&
error != GRPC_ERROR_NONE) { error != GRPC_ERROR_NONE) {
gpr_log(GPR_ERROR, "Operation failed: tag=%p, error=%s", tag, errmsg); gpr_log(GPR_INFO, "Operation failed: tag=%p, error=%s", tag, errmsg);
} }
} }
cq_next_data* cqd = static_cast<cq_next_data*> DATA_FROM_CQ(cq); cq_next_data* cqd = static_cast<cq_next_data*> DATA_FROM_CQ(cq);

Loading…
Cancel
Save