Skip to content

Commit

Permalink
fix missing logging of packager name
Browse files Browse the repository at this point in the history
  • Loading branch information
pohhsu committed Sep 11, 2023
1 parent 86b6430 commit 6d0c7fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion transform/BasePackager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ public Process StartProcess(string command, IEnumerable<string> 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();
};
Expand Down

0 comments on commit 6d0c7fc

Please sign in to comment.