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)
100
var log = testSink.Writes.Single(s => s.
LoggerName
== typeof(FrontendCompositeAuthenticationHandler).FullName && s.EventId.Name == "AuthenticationSchemeNotAuthenticatedWithFailure");
170
var l = testSink.Writes.Where(w => w.
LoggerName
== typeof(DashboardWebApplication).FullName).ToList();
231
var l = testSink.Writes.Where(w => w.
LoggerName
== typeof(DashboardWebApplication).FullName).ToList();
258
var l = testSink.Writes.Where(w => w.
LoggerName
== typeof(DashboardWebApplication).FullName).ToList();
Integration\FrontendOpenIdConnectAuthTests.cs (1)
89
var log = testSink.Writes.Single(s => s.
LoggerName
== typeof(FrontendCompositeAuthenticationHandler).FullName && s.EventId.Name == "AuthenticationSchemeNotAuthenticatedWithFailure");
Integration\StartupTests.cs (3)
346
if (w.
LoggerName
!= typeof(DashboardWebApplication).FullName)
564
var l = testSink.Writes.Where(w => w.
LoggerName
== typeof(DashboardWebApplication).FullName).ToList();
644
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}";