File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -201,7 +201,7 @@ class DeviceTracerImpl : public DeviceTracer {
201
201
uint32_t correlation_id, uint64_t bytes) {
202
202
// 0 means timestamp information could not be collected for the kernel.
203
203
if (start_ns == 0 || end_ns == 0 ) {
204
- LOG (WARNING ) << name << " cannot be traced" ;
204
+ VLOG ( 3 ) << name << " cannot be traced" ;
205
205
return ;
206
206
}
207
207
std::lock_guard<std::mutex> l (trace_mu_);
@@ -213,7 +213,7 @@ class DeviceTracerImpl : public DeviceTracer {
213
213
uint32_t stream_id, uint32_t correlation_id) {
214
214
// 0 means timestamp information could not be collected for the kernel.
215
215
if (start == 0 || end == 0 ) {
216
- LOG (WARNING ) << correlation_id << " cannot be traced" ;
216
+ VLOG ( 3 ) << correlation_id << " cannot be traced" ;
217
217
return ;
218
218
}
219
219
std::lock_guard<std::mutex> l (trace_mu_);
You can’t perform that action at this time.
0 commit comments