diff options
Diffstat (limited to 'src/core/thread/TaskRunner.cpp')
-rw-r--r-- | src/core/thread/TaskRunner.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/thread/TaskRunner.cpp b/src/core/thread/TaskRunner.cpp index abf7b8dc..c7d92382 100644 --- a/src/core/thread/TaskRunner.cpp +++ b/src/core/thread/TaskRunner.cpp @@ -38,7 +38,7 @@ class TaskRunner::Impl : public QThread { void PostTask(Task* task) { if (task == nullptr) { - qCWarning(core, "task posted is null"); + FLOG_W("task posted is null"); return; } @@ -73,7 +73,7 @@ class TaskRunner::Impl : public QThread { void PostConcurrentTask(Task* task) { if (task == nullptr) { - qCWarning(core, "task posted is null"); + FLOG_W("task posted is null"); return; } |