We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
When using Horarium.AspNetCore errors are logged without actual exception.
Horarium.AspNetCore
It seems that HorariumLogger.cs puts params in wrong order: _logger.LogError(message, ex);
HorariumLogger.cs
_logger.LogError(message, ex);
Expected: _logger.LogError(ex, message);
_logger.LogError(ex, message);
The text was updated successfully, but these errors were encountered:
It would be nice if you could provide a PR with a fix for this issue.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
When using
Horarium.AspNetCore
errors are logged without actual exception.It seems that
HorariumLogger.cs
puts params in wrong order:_logger.LogError(message, ex);
Expected:
_logger.LogError(ex, message);
The text was updated successfully, but these errors were encountered: