mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-24 21:46:52 +01:00
Merge pull request #1660 from tgstation/LogginFormattings
Fix weird log formatting in `ProcessExecutor`
This commit is contained in:
@@ -95,8 +95,9 @@ namespace Tgstation.Server.Host.System
|
||||
throw new InvalidOperationException("Requesting output/error reading requires noShellExecute to be true!");
|
||||
|
||||
logger.LogDebug(
|
||||
"{launchType}aunching process in {workingDirectory}: {exe} {arguments}",
|
||||
noShellExecute ? "L" : "Shell l",
|
||||
noShellExecute
|
||||
? "Launching process in {workingDirectory}: {exe} {arguments}"
|
||||
: "Shell launching process in {workingDirectory}: {exe} {arguments}",
|
||||
workingDirectory,
|
||||
fileName,
|
||||
arguments);
|
||||
|
||||
Reference in New Issue
Block a user