Don't crash if separate process creation failed

This commit is contained in:
Deve 2018-08-15 22:11:59 +02:00
parent c43975c03a
commit b5e4275f87

View File

@ -74,7 +74,7 @@ SeparateProcess::SeparateProcess(const std::string& exe,
if (!createChildProcess(exe, argument, create_pipe))
{
Log::fatal("SeparateProcess", "Failed to run %s %s",
Log::error("SeparateProcess", "Failed to run %s %s",
exe.c_str(), argument.c_str());
return;
}