Logger: Do not quote strings by default

This commit is contained in:
Albert S. 2019-04-22 21:59:05 +02:00
부모 6ac7c199fb
커밋 ae4b06d647

파일 보기

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