From 5f24e4cec90e8dedc8bb9b354031078db4135622 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Tue, 15 Mar 2016 20:09:14 +0100 Subject: [PATCH] Changed the log level for the YACReader log --- YACReader/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/YACReader/main.cpp b/YACReader/main.cpp index fd01d04e..931ca4a9 100644 --- a/YACReader/main.cpp +++ b/YACReader/main.cpp @@ -123,7 +123,7 @@ int main(int argc, char * argv[]) QDir().mkpath(YACReader::getSettingsPath()); Logger& logger = Logger::instance(); - logger.setLoggingLevel(QsLogging::TraceLevel); + logger.setLoggingLevel(QsLogging::InfoLevel); DestinationPtr fileDestination(DestinationFactory::MakeFileDestination( destLog, EnableLogRotation, MaxSizeBytes(1048576), MaxOldLogCount(2)));