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 }