From 643208fc477ae9783054bde9cfa8cd69f66d07d7 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 5 Sep 2022 16:23:15 -0400 Subject: [PATCH] Remove some useless debug messages for launching certain programs --- launcher/core/src/launchercore.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/launcher/core/src/launchercore.cpp b/launcher/core/src/launchercore.cpp index ea20fd6..191f854 100755 --- a/launcher/core/src/launchercore.cpp +++ b/launcher/core/src/launchercore.cpp @@ -321,8 +321,6 @@ void LauncherCore::launchExecutable( process->setProcessEnvironment(env); - qDebug() << "launching " << executable << " with args" << arguments; - process->start(executable, arguments); }