Skip to content

Commit

Permalink
Fix invalid parameter order of LogWarning (#231)
Browse files Browse the repository at this point in the history
  • Loading branch information
bingenito authored Apr 1, 2024
1 parent 410d432 commit 1f7aead
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Crossroads/Services/PackageApplicationBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ private void cleanWorkingDirectory()
}
catch (Exception ex)
{
_logger.LogWarning("Optionally delete file in working directory", ex.Message);
_logger.LogWarning(ex.Message, "Optionally delete file in working directory");
}
}

Expand Down

0 comments on commit 1f7aead

Please sign in to comment.