1 write to LoggerName
Aspire.Dashboard.Tests (1)
tests\Shared\Logging\TestLogger.cs (1)
52
LoggerName
= _name,
14 references to LoggerName
Aspire.Dashboard.Tests (14)
Integration\FrontendBrowserTokenAuthTests.cs (4)
302
var log = testSink.Writes.Single(s => s.
LoggerName
== typeof(FrontendCompositeAuthenticationHandler).FullName && s.EventId.Name == "AuthenticationSchemeNotAuthenticatedWithFailure");
372
var l = testSink.Writes.Where(w => w.
LoggerName
== typeof(DashboardWebApplication).FullName && w.LogLevel >= LogLevel.Information).ToList();
448
var l = testSink.Writes.Where(w => w.
LoggerName
== typeof(DashboardWebApplication).FullName).ToList();
476
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\OtlpHttpServiceTests.cs (1)
294
w.
LoggerName
== "Aspire.Dashboard.Otlp.Http" &&
Integration\StartupTests.cs (5)
463
if (w.
LoggerName
!= typeof(DashboardWebApplication).FullName)
686
var l = testSink.Writes.Where(w => w.
LoggerName
== typeof(DashboardWebApplication).FullName && w.LogLevel >= LogLevel.Information).ToList();
746
var l = testSink.Writes.Where(w => w.
LoggerName
== typeof(DashboardWebApplication).FullName && w.LogLevel >= LogLevel.Information).ToList();
806
.Where(w => w.
LoggerName
== typeof(DashboardWebApplication).FullName && w.LogLevel >= LogLevel.Warning)
868
var l = testSink.Writes.Where(w => w.
LoggerName
== typeof(DashboardWebApplication).FullName && w.LogLevel >= LogLevel.Information).ToList();
Model\DashboardDataSourceTests.cs (1)
900
Assert.Equal(typeof(DashboardRunStore).FullName, warning.
LoggerName
);
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}";