3 instantiations of Logger
Microsoft.AspNetCore.SignalR.Core (1)
HubConnectionHandler.cs (1)
102new Logger<DefaultHubDispatcher<THub>>(loggerFactory),
Microsoft.Extensions.Logging.Abstractions (1)
LoggerFactoryExtensions.cs (1)
24return new Logger<T>(factory);
Microsoft.Extensions.ServiceDiscovery.Tests (1)
ExtensionsServicePublicApiTests.cs (1)
151new Logger<ServiceEndpointWatcher>(new NullLoggerFactory()),
4 references to Logger
aspire (1)
Program.cs (1)
285builder.Services.TryAddSingleton(typeof(ILogger<>), typeof(Logger<>));
Aspire.Hosting (1)
Dashboard\DashboardServiceHost.cs (1)
110builder.Services.Add(ServiceDescriptor.Singleton(typeof(ILogger<>), typeof(Logger<>)));
Microsoft.Extensions.Logging (1)
LoggingServiceCollectionExtensions.cs (1)
39services.TryAdd(ServiceDescriptor.Singleton(typeof(ILogger<>), typeof(Logger<>)));
Microsoft.Extensions.Logging.Abstractions (1)
LoggerT.cs (1)
22/// Creates a new <see cref="Logger{T}"/>.