React to logging changes
This commit is contained in:
parent
63ac7210ce
commit
109c56713a
|
|
@ -154,9 +154,9 @@ namespace Microsoft.AspNetCore.Server.Kestrel
|
|||
return _logger.IsEnabled(logLevel);
|
||||
}
|
||||
|
||||
public virtual IDisposable BeginScopeImpl(object state)
|
||||
public virtual IDisposable BeginScope<TState>(TState state)
|
||||
{
|
||||
return _logger.BeginScopeImpl(state);
|
||||
return _logger.BeginScope(state);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -16,7 +16,7 @@ namespace Microsoft.AspNetCore.Server.KestrelTests
|
|||
|
||||
public int ApplicationErrorsLogged { get; set; }
|
||||
|
||||
public IDisposable BeginScopeImpl(object state)
|
||||
public IDisposable BeginScope<TState>(TState state)
|
||||
{
|
||||
return new Disposable(() => { });
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue