added todo comment for logger flush

Tá an tiomantas seo le fáil i:
2019-04-20 23:27:27 +02:00
tuismitheoir 10f05af6ac
tiomantas f461d2c844

Féach ar an gComhad

@ -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;
} }