diff --git a/paddle/fluid/platform/device_tracer.cc b/paddle/fluid/platform/device_tracer.cc index 8e1691efb5be09580527a73dc8931ff72930fa86..c4c0963091478528c790d2a8eb10658cbb605a6e 100644 --- a/paddle/fluid/platform/device_tracer.cc +++ b/paddle/fluid/platform/device_tracer.cc @@ -201,7 +201,7 @@ class DeviceTracerImpl : public DeviceTracer { uint32_t correlation_id, uint64_t bytes) { // 0 means timestamp information could not be collected for the kernel. if (start_ns == 0 || end_ns == 0) { - LOG(WARNING) << name << " cannot be traced"; + VLOG(3) << name << " cannot be traced"; return; } std::lock_guard l(trace_mu_); @@ -213,7 +213,7 @@ class DeviceTracerImpl : public DeviceTracer { uint32_t stream_id, uint32_t correlation_id) { // 0 means timestamp information could not be collected for the kernel. if (start == 0 || end == 0) { - LOG(WARNING) << correlation_id << " cannot be traced"; + VLOG(3) << correlation_id << " cannot be traced"; return; } std::lock_guard l(trace_mu_);