We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In many of the log messages a logger.IsEnabled call is called to guard the actual logging invocation.
logger.IsEnabled
I think we should migrate and use https://learn.microsoft.com/en-us/dotnet/core/extensions/logger-message-generator for logging
https://github.com/search?q=repo%3Adotnet%2Forleans%20logger.isenabled&type=code for reference
The text was updated successfully, but these errors were encountered:
This is a work in progress. PRs welcome
Sorry, something went wrong.
> Starting with .NET 9, the logging method can additionally get the logger from an ILogger primary constructor parameter in the containing class.
I assume we still can't leverage this due to targeting net8.0 (found #9246)
No branches or pull requests
In many of the log messages a
logger.IsEnabled
call is called to guard the actual logging invocation.I think we should migrate and use https://learn.microsoft.com/en-us/dotnet/core/extensions/logger-message-generator for logging
https://github.com/search?q=repo%3Adotnet%2Forleans%20logger.isenabled&type=code for reference
The text was updated successfully, but these errors were encountered: