aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/thread/FileReadTask.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/thread/FileReadTask.cpp')
-rw-r--r--src/core/thread/FileReadTask.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/thread/FileReadTask.cpp b/src/core/thread/FileReadTask.cpp
index b4c6874f..d74f5a68 100644
--- a/src/core/thread/FileReadTask.cpp
+++ b/src/core/thread/FileReadTask.cpp
@@ -45,7 +45,7 @@ auto FileReadTask::Run() -> int {
target_file_.open(QIODevice::ReadOnly);
if (!(target_file_.isOpen() && target_file_.isReadable())) {
- qCWarning(core, "file not open or not readable");
+ FLOG_W("file not open or not readable");
if (target_file_.isOpen()) target_file_.close();
return -1;
}