From b44f7b30ed06a61b2f98109d61eb30e3ac11073a Mon Sep 17 00:00:00 2001 From: Liang Ding Date: Fri, 20 Jan 2023 00:25:50 +0800 Subject: [PATCH] =?UTF-8?q?:art:=20=E6=94=B9=E8=BF=9B=E5=86=85=E6=A0=B8?= =?UTF-8?q?=E4=BB=BB=E5=8A=A1=E8=B0=83=E5=BA=A6=E6=9C=BA=E5=88=B6=E6=8F=90?= =?UTF-8?q?=E5=8D=87=E7=A8=B3=E5=AE=9A=E6=80=A7=20https://github.com/siyua?= =?UTF-8?q?n-note/siyuan/issues/7113?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- kernel/task/queue.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/task/queue.go b/kernel/task/queue.go index 93518326b..a95155d59 100644 --- a/kernel/task/queue.go +++ b/kernel/task/queue.go @@ -48,7 +48,7 @@ func PrependTask(action string, handler interface{}, args ...interface{}) { defer queueLock.Unlock() if QueueStatusRunning != taskQueueStatus { - logging.LogWarnf("task queue is paused, action [%s] will be ignored", action) + //logging.LogWarnf("task queue is paused, action [%s] will be ignored", action) return } @@ -61,7 +61,7 @@ func AppendTask(action string, handler interface{}, args ...interface{}) { defer queueLock.Unlock() if QueueStatusRunning != taskQueueStatus { - logging.LogWarnf("task queue is paused, action [%s] will be ignored", action) + //logging.LogWarnf("task queue is paused, action [%s] will be ignored", action) return }