NOISSUE stop logging process environment and MC launch script

This commit is contained in:
Petr Mrázek 2018-01-04 03:50:05 +01:00
parent 03a93b8e4a
commit 9510a1bbf2
2 changed files with 2 additions and 2 deletions

View File

@ -107,7 +107,7 @@ QProcessEnvironment CleanEnviroment()
continue;
}
#endif
qDebug() << "Env: " << key << value;
// qDebug() << "Env: " << key << value;
env.insert(key, value);
}
#ifdef Q_OS_LINUX

View File

@ -494,7 +494,7 @@ QString MinecraftInstance::createLaunchScript(AuthSessionPtr session)
launchScript += "traits " + trait + "\n";
}
launchScript += "launcher onesix\n";
qDebug() << "Generated launch script:" << launchScript;
// qDebug() << "Generated launch script:" << launchScript;
return launchScript;
}