added todo comment for logger flush

这个提交包含在:
2019-04-20 23:27:27 +02:00
父节点 10f05af6ac
当前提交 f461d2c844

查看文件

@@ -18,6 +18,7 @@ public:
{ {
QMutexLocker locker(&this->mutex); QMutexLocker locker(&this->mutex);
*out << val; *out << val;
//TODO: QDebug may not have flushed yet
file->flush(); file->flush();
return *this; return *this;
} }
@@ -27,6 +28,7 @@ public:
{ {
QMutexLocker locker(&this->mutex); QMutexLocker locker(&this->mutex);
*out << val; *out << val;
//TODO: QDebug may not have flushed yet
file->flush(); file->flush();
return *this; return *this;
} }