aboutsummaryrefslogtreecommitdiff
path: root/launcher/launch/steps/PreLaunchCommand.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'launcher/launch/steps/PreLaunchCommand.cpp')
-rw-r--r--launcher/launch/steps/PreLaunchCommand.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/launcher/launch/steps/PreLaunchCommand.cpp b/launcher/launch/steps/PreLaunchCommand.cpp
index 20e089e2..1a0889c8 100644
--- a/launcher/launch/steps/PreLaunchCommand.cpp
+++ b/launcher/launch/steps/PreLaunchCommand.cpp
@@ -29,7 +29,7 @@ void PreLaunchCommand::executeTask()
{
//FIXME: where to put this?
QString prelaunch_cmd = m_parent->substituteVariables(m_command);
- emit logLine(tr("Running Pre-Launch command: %1").arg(prelaunch_cmd), MessageLevel::MultiMC);
+ emit logLine(tr("Running Pre-Launch command: %1").arg(prelaunch_cmd), MessageLevel::Launcher);
m_process.start(prelaunch_cmd);
}
@@ -60,7 +60,7 @@ void PreLaunchCommand::on_state(LoggedProcess::State state)
}
else
{
- emit logLine(tr("Pre-Launch command ran successfully.\n\n"), MessageLevel::MultiMC);
+ emit logLine(tr("Pre-Launch command ran successfully.\n\n"), MessageLevel::Launcher);
emitSucceeded();
}
}