diff --git a/Telegram/SourceFiles/facades.cpp b/Telegram/SourceFiles/facades.cpp index 7692f196f..3a953acac 100644 --- a/Telegram/SourceFiles/facades.cpp +++ b/Telegram/SourceFiles/facades.cpp @@ -450,14 +450,35 @@ void WriteInstallBetaVersionsSetting() { } } -void WorkingDirReady() { +QString DebugModeSettingPath() { + return cWorkingDir() + qsl("tdata/withdebug"); +} + +void WriteDebugModeSetting() { + QFile f(DebugModeSettingPath()); + if (f.open(QIODevice::WriteOnly)) { + f.write(Logs::DebugEnabled() ? "1" : "0"); + } +} + +void ComputeTestMode() { if (QFile(cWorkingDir() + qsl("tdata/withtestmode")).exists()) { cSetTestMode(true); } - if (!Logs::DebugEnabled() - && QFile(cWorkingDir() + qsl("tdata/withdebug")).exists()) { - Logs::SetDebugEnabled(true); +} + +void ComputeDebugMode() { + Logs::SetDebugEnabled(cAlphaVersion() != 0); + const auto debugModeSettingPath = DebugModeSettingPath(); + if (QFile(debugModeSettingPath).exists()) { + QFile f(debugModeSettingPath); + if (f.open(QIODevice::ReadOnly)) { + Logs::SetDebugEnabled(f.read(1) != "0"); + } } +} + +void ComputeInstallBetaVersions() { const auto installBetaSettingPath = InstallBetaVersionsSettingPath(); if (cAlphaVersion()) { cSetInstallBetaVersion(false); @@ -469,9 +490,9 @@ void WorkingDirReady() { } else if (AppBetaVersion) { WriteInstallBetaVersionsSetting(); } +} - srand((int32)time(NULL)); - +void ComputeUserTag() { SandboxUserTag = 0; QFile usertag(cWorkingDir() + qsl("tdata/usertag")); if (usertag.open(QIODevice::ReadOnly)) { @@ -492,6 +513,15 @@ void WorkingDirReady() { } } +void WorkingDirReady() { + srand((int32)time(NULL)); + + ComputeTestMode(); + ComputeDebugMode(); + ComputeInstallBetaVersions(); + ComputeUserTag(); +} + void start() { SandboxData = std::make_unique(); } diff --git a/Telegram/SourceFiles/facades.h b/Telegram/SourceFiles/facades.h index 3e9f0de60..bf9e7e57b 100644 --- a/Telegram/SourceFiles/facades.h +++ b/Telegram/SourceFiles/facades.h @@ -188,6 +188,7 @@ namespace Sandbox { bool CheckAlphaVersionDir(); void WorkingDirReady(); void WriteInstallBetaVersionsSetting(); +void WriteDebugModeSetting(); void MainThreadTaskAdded(); diff --git a/Telegram/SourceFiles/logs.cpp b/Telegram/SourceFiles/logs.cpp index 32367886a..c09b2fffe 100644 --- a/Telegram/SourceFiles/logs.cpp +++ b/Telegram/SourceFiles/logs.cpp @@ -331,7 +331,6 @@ void start(not_null launcher) { auto workingDirChosen = false; if (cAlphaVersion()) { - SetDebugEnabled(true); workingDirChosen = true; #if defined Q_OS_MAC || defined Q_OS_LINUX } else { diff --git a/Telegram/SourceFiles/messenger.cpp b/Telegram/SourceFiles/messenger.cpp index 846d752d2..0ada323eb 100644 --- a/Telegram/SourceFiles/messenger.cpp +++ b/Telegram/SourceFiles/messenger.cpp @@ -678,17 +678,13 @@ void Messenger::killDownloadSessions() { void Messenger::onSwitchDebugMode() { if (Logs::DebugEnabled()) { - QFile(cWorkingDir() + qsl("tdata/withdebug")).remove(); Logs::SetDebugEnabled(false); + Sandbox::WriteDebugModeSetting(); App::restart(); } else { Logs::SetDebugEnabled(true); + Sandbox::WriteDebugModeSetting(); DEBUG_LOG(("Debug logs started.")); - QFile f(cWorkingDir() + qsl("tdata/withdebug")); - if (f.open(QIODevice::WriteOnly)) { - f.write("1"); - f.close(); - } Ui::hideLayer(); } }