From 8f23a3d94d85610cbd321e1c3ced7e79d3e79911 Mon Sep 17 00:00:00 2001 From: Laurent Trinques Date: Fri, 24 Jan 2025 11:49:53 +0100 Subject: [PATCH] Improve logs in machine info --- sources/machine_info.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sources/machine_info.cpp b/sources/machine_info.cpp index 66424dd7e..fb93dfa93 100644 --- a/sources/machine_info.cpp +++ b/sources/machine_info.cpp @@ -159,9 +159,9 @@ void MachineInfo::send_info_to_debug() qInfo()<< " User Location:"<< QString(QETApp::configDir().toLatin1()); - qInfo()<< " Standard Location :"<< QStringList(QStandardPaths::writableLocation(QStandardPaths::AppConfigLocation)); - qInfo()<< " App Data Location:"<< QStandardPaths::writableLocation(QStandardPaths::AppDataLocation); - qInfo()<< " App Local DataLocation:"<< QStandardPaths::writableLocation(QStandardPaths::ApplicationsLocation); + qInfo()<< " Config Location :"<< QStringList(QStandardPaths::writableLocation(QStandardPaths::AppConfigLocation)); + qInfo()<< " Project stalefiles Location:"<< QStandardPaths::writableLocation(QStandardPaths::AppDataLocation); + //qInfo()<< " App Local DataLocation:"<< QStandardPaths::writableLocation(QStandardPaths::ApplicationsLocation); // qInfo()<< " Home Location:"<< QStandardPaths::writableLocation(QStandardPaths::HomeLocation); // qInfo()<< " Runtime Location:"<< QStandardPaths::writableLocation(QStandardPaths::RuntimeLocation); // qInfo()<< " Cache Location:"<< QStandardPaths::writableLocation(QStandardPaths::CacheLocation);