Logger: Do not quote strings by default

This commit is contained in:
Albert S. 2019-04-22 21:59:05 +02:00
parent 8b999ed4f7
commit ca7b5a7430
1 ha cambiato i file con 1 aggiunte e 0 eliminazioni

Vedi File

@ -4,6 +4,7 @@
Logger::Logger(QFile *file)
{
out = new QDebug(file);
out->noquote();
this->file = file;
}