Skip to content

Commit 705abbd

Browse files
authored
executor: Lower the log level from info to debug for index merge reader (#42597) (#42838)
close #41949
1 parent ea10624 commit 705abbd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

executor/index_merge_reader.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -757,7 +757,7 @@ func handleWorkerPanic(ctx context.Context, finished <-chan struct{}, ch chan<-
757757
defer close(ch)
758758
}
759759
if r == nil {
760-
logutil.BgLogger().Info("worker finish without panic", zap.Any("worker", worker))
760+
logutil.BgLogger().Debug("worker finish without panic", zap.Any("worker", worker))
761761
return
762762
}
763763

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

0 commit comments

Comments
 (0)