You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 13, 2018. It is now read-only.
Registering a single LoggerProvider that doesn't implement ISupportExternalScope will now fail in the following code:
using (var scopeState = _logger.BeginScope("{World} People", "Earth"))
{
_logger.LogInformation(scopeState.ToString()); // No longer prints Earth People
}
Bug introduced by #723, because the following optimization was removed:
if (loggers.Length == 1)
return loggers[0].Logger.BeginScope(state);