diff --git a/transform/BasePackager.cs b/transform/BasePackager.cs index bd84324..5175f7f 100644 --- a/transform/BasePackager.cs +++ b/transform/BasePackager.cs @@ -169,7 +169,7 @@ public Process StartProcess(string command, IEnumerable arguments, Actio process.Exited += (s, args) => { if (process.ExitCode != 0) - _logger.LogError("Packager {} finished with exit code {code}", command, process.ExitCode); + _logger.LogError("Packager {command} finished with exit code {code}", command, process.ExitCode); onExit(process); process.Dispose(); };