From 3afc5bdfcf0811468ad387d655314ddde5d37934 Mon Sep 17 00:00:00 2001 From: Haojun Liao Date: Sat, 6 May 2023 10:09:51 +0800 Subject: [PATCH] refactor: add some logs. --- source/libs/stream/src/streamExec.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/libs/stream/src/streamExec.c b/source/libs/stream/src/streamExec.c index f79d84c371..e85a552d13 100644 --- a/source/libs/stream/src/streamExec.c +++ b/source/libs/stream/src/streamExec.c @@ -250,6 +250,8 @@ int32_t streamExecForAll(SStreamTask* pTask) { void* pInput = NULL; // merge multiple input data if possible in the input queue. + qDebug("s-task:%s start to extract data block from inputQ", pTask->id.idStr); + while (1) { SStreamQueueItem* qItem = streamQueueNextItem(pTask->inputQueue); if (qItem == NULL) {