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