1 write to LoggerName
Aspire.Dashboard.Tests (1)
tests\Shared\Logging\TestLogger.cs (1)
52
LoggerName
= _name,
10 references to LoggerName
Aspire.Dashboard.Tests (10)
Integration\FrontendBrowserTokenAuthTests.cs (4)
101
var log = testSink.Writes.Single(s => s.
LoggerName
== typeof(FrontendCompositeAuthenticationHandler).FullName && s.EventId.Name == "AuthenticationSchemeNotAuthenticatedWithFailure");
171
var l = testSink.Writes.Where(w => w.
LoggerName
== typeof(DashboardWebApplication).FullName).ToList();
232
var l = testSink.Writes.Where(w => w.
LoggerName
== typeof(DashboardWebApplication).FullName).ToList();
259
var l = testSink.Writes.Where(w => w.
LoggerName
== typeof(DashboardWebApplication).FullName).ToList();
Integration\FrontendOpenIdConnectAuthTests.cs (1)
90
var log = testSink.Writes.Single(s => s.
LoggerName
== typeof(FrontendCompositeAuthenticationHandler).FullName && s.EventId.Name == "AuthenticationSchemeNotAuthenticatedWithFailure");
Integration\StartupTests.cs (3)
343
if (w.
LoggerName
!= typeof(DashboardWebApplication).FullName)
559
var l = testSink.Writes.Where(w => w.
LoggerName
== typeof(DashboardWebApplication).FullName).ToList();
639
var l = testSink.Writes.Where(w => w.
LoggerName
== typeof(DashboardWebApplication).FullName).ToList();
tests\Shared\Logging\TestSink.cs (1)
56
return context.
LoggerName
?.Equals(typeof(T).FullName) == true;
tests\Shared\Logging\WriteContext.cs (1)
32
return $"{LogLevel} {
LoggerName
}: {Message}";