Skip to content

Commit 255afd5

Browse files
committed
Lower the log level from info to debug
Signed-off-by: yibin <[email protected]>
1 parent f1438a3 commit 255afd5

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
@@ -789,7 +789,7 @@ func handleWorkerPanic(ctx context.Context, finished <-chan struct{}, ch chan<-
789789
defer close(ch)
790790
}
791791
if r == nil {
792-
logutil.BgLogger().Info("worker finish without panic", zap.Any("worker", worker))
792+
logutil.BgLogger().Debug("worker finish without panic", zap.Any("worker", worker))
793793
return
794794
}
795795

@@ -1341,7 +1341,7 @@ func (w *indexMergeTableScanWorker) pickAndExecTask(ctx context.Context, task **
13411341
func (w *indexMergeTableScanWorker) handleTableScanWorkerPanic(ctx context.Context, finished <-chan struct{}, task **indexMergeTableTask, worker string) func(r interface{}) {
13421342
return func(r interface{}) {
13431343
if r == nil {
1344-
logutil.BgLogger().Info("worker finish without panic", zap.Any("worker", worker))
1344+
logutil.BgLogger().Debug("worker finish without panic", zap.Any("worker", worker))
13451345
return
13461346
}
13471347

0 commit comments

Comments
 (0)