added todo comment for logger flush

Cette révision appartient à :
Albert S. 2019-04-20 23:27:27 +02:00
Parent 2f82b56db1
révision f160c72d2f
1 fichiers modifiés avec 2 ajouts et 0 suppressions

Voir le fichier

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