Skip to content

Commit e681772

Browse files
kKPullameta-codesync[bot]
authored andcommitted
misc: Change task termination log level to VLOG (facebookincubator#15481)
Summary: Pull Request resolved: facebookincubator#15481 Reduce log spam when running tasks at high QPS and also to keep it consistent with other driver removal logs in the file. Reviewed By: mbasmanova, darxsys Differential Revision: D86894626 fbshipit-source-id: 678080a0b70e9c83c8a09b96fef8972357674d3c
1 parent 1895711 commit e681772

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

velox/exec/Task.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2452,9 +2452,9 @@ ContinueFuture Task::terminate(TaskState terminalState) {
24522452
cancellationSource_.requestCancellation();
24532453
}
24542454

2455-
LOG(INFO) << "Terminating task " << taskId() << " with state "
2456-
<< taskStateString(state_) << " after running for "
2457-
<< succinctMillis(timeSinceStartMsLocked());
2455+
VLOG(1) << "Terminating task " << taskId() << " with state "
2456+
<< taskStateString(state_) << " after running for "
2457+
<< succinctMillis(timeSinceStartMsLocked());
24582458

24592459
taskCompletionNotifier.activate(
24602460
std::move(taskCompletionPromises_), [&]() { onTaskCompletion(); });

0 commit comments

Comments
 (0)