Skip to content

Commit

Permalink
executor: Lower the log level from info to debug for index merge read…
Browse files Browse the repository at this point in the history
…er (#42597) (#42838)

close #41949
  • Loading branch information
ti-chi-bot authored Apr 6, 2023
1 parent ea10624 commit 705abbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions executor/index_merge_reader.go
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,7 @@ func handleWorkerPanic(ctx context.Context, finished <-chan struct{}, ch chan<-
defer close(ch)
}
if r == nil {
logutil.BgLogger().Info("worker finish without panic", zap.Any("worker", worker))
logutil.BgLogger().Debug("worker finish without panic", zap.Any("worker", worker))
return
}

Expand Down Expand Up @@ -1073,7 +1073,7 @@ func (w *indexMergeTableScanWorker) pickAndExecTask(ctx context.Context, task **
func (w *indexMergeTableScanWorker) handleTableScanWorkerPanic(ctx context.Context, finished <-chan struct{}, task **lookupTableTask, worker string) func(r interface{}) {
return func(r interface{}) {
if r == nil {
logutil.BgLogger().Info("worker finish without panic", zap.Any("worker", worker))
logutil.BgLogger().Debug("worker finish without panic", zap.Any("worker", worker))
return
}

Expand Down

0 comments on commit 705abbd

Please sign in to comment.