diff options
Diffstat (limited to 'launcher/launch/steps/PostLaunchCommand.cpp')
-rw-r--r-- | launcher/launch/steps/PostLaunchCommand.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/launcher/launch/steps/PostLaunchCommand.cpp b/launcher/launch/steps/PostLaunchCommand.cpp index d48d03d1..143eb441 100644 --- a/launcher/launch/steps/PostLaunchCommand.cpp +++ b/launcher/launch/steps/PostLaunchCommand.cpp @@ -28,7 +28,7 @@ PostLaunchCommand::PostLaunchCommand(LaunchTask *parent) : LaunchStep(parent) void PostLaunchCommand::executeTask() { QString postlaunch_cmd = m_parent->substituteVariables(m_command); - emit logLine(tr("Running Post-Launch command: %1").arg(postlaunch_cmd), MessageLevel::MultiMC); + emit logLine(tr("Running Post-Launch command: %1").arg(postlaunch_cmd), MessageLevel::Launcher); m_process.start(postlaunch_cmd); } @@ -59,7 +59,7 @@ void PostLaunchCommand::on_state(LoggedProcess::State state) } else { - emit logLine(tr("Post-Launch command ran successfully.\n\n"), MessageLevel::MultiMC); + emit logLine(tr("Post-Launch command ran successfully.\n\n"), MessageLevel::Launcher); emitSucceeded(); } } |