Disabled debug logging by default for macOS debug builds.

This commit is contained in:
23rd
2026-04-08 10:09:21 +03:00
parent 07250a1bcf
commit a8b59804fa
+1 -1
View File
@@ -119,7 +119,7 @@ void ComputeDebugMode() {
auto file = QFile(debugModeSettingPath);
if (file.exists() && file.open(QIODevice::ReadOnly)) {
Logs::SetDebugEnabled(file.read(1) != "0");
#if defined _DEBUG
#if defined _DEBUG && !defined Q_OS_MAC
} else {
Logs::SetDebugEnabled(true);
#endif