Skip to content

Commit

Permalink
installer: remove log and ReportIfQuick
Browse files Browse the repository at this point in the history
  • Loading branch information
kjk committed Aug 18, 2024
1 parent 1545cc5 commit a398cfe
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Installer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ static void OnButtonInstall(InstallerWnd* wnd) {
if (gInstallStarted) {
// I've seen crashes where somehow "Install" button was pressed twice
logf("OnButtonInstall: called but gInstallStarted is %d\n", (int)gInstallStarted);
ReportIfQuick(gInstallStarted);
//ReportIfQuick(gInstallStarted);
return;
}

Expand Down Expand Up @@ -1232,7 +1232,6 @@ int RunInstaller() {

if (gCli->silent) {
gInstallStarted = true;
logfa("gCli->silent, before running InstallerThread()\n");
InstallerThread(&gCliNew);
ret = gInstallFailed ? 1 : 0;
} else {
Expand Down

0 comments on commit a398cfe

Please sign in to comment.