diff --git a/framework/src/Volo.Abp.Core/Volo/Abp/Internal/InternalServiceCollectionExtensions.cs b/framework/src/Volo.Abp.Core/Volo/Abp/Internal/InternalServiceCollectionExtensions.cs index 476670b98c..ee06003204 100644 --- a/framework/src/Volo.Abp.Core/Volo/Abp/Internal/InternalServiceCollectionExtensions.cs +++ b/framework/src/Volo.Abp.Core/Volo/Abp/Internal/InternalServiceCollectionExtensions.cs @@ -36,7 +36,7 @@ namespace Volo.Abp.Internal services.TryAddSingleton(moduleLoader); services.TryAddSingleton(assemblyFinder); services.TryAddSingleton(typeFinder); - services.TryAddSingleton(new InitLoggerFactory()); + services.TryAddSingleton(new DefaultInitLoggerFactory()); services.AddAssemblyOf(); diff --git a/framework/src/Volo.Abp.Core/Volo/Abp/Logging/InitLoggerFactory.cs b/framework/src/Volo.Abp.Core/Volo/Abp/Logging/DefaultInitLoggerFactory.cs similarity index 84% rename from framework/src/Volo.Abp.Core/Volo/Abp/Logging/InitLoggerFactory.cs rename to framework/src/Volo.Abp.Core/Volo/Abp/Logging/DefaultInitLoggerFactory.cs index 89005bee31..cb2e5d4060 100644 --- a/framework/src/Volo.Abp.Core/Volo/Abp/Logging/InitLoggerFactory.cs +++ b/framework/src/Volo.Abp.Core/Volo/Abp/Logging/DefaultInitLoggerFactory.cs @@ -3,7 +3,7 @@ using System.Collections.Generic; namespace Volo.Abp.Logging { - public class InitLoggerFactory : IInitLoggerFactory + public class DefaultInitLoggerFactory : IInitLoggerFactory { private readonly Dictionary _cache = new Dictionary(); diff --git a/framework/test/Volo.Abp.Core.Tests/Volo/Abp/Modularity/ModuleLoader_Tests.cs b/framework/test/Volo.Abp.Core.Tests/Volo/Abp/Modularity/ModuleLoader_Tests.cs index 4d45888eb3..4b7ed95e89 100644 --- a/framework/test/Volo.Abp.Core.Tests/Volo/Abp/Modularity/ModuleLoader_Tests.cs +++ b/framework/test/Volo.Abp.Core.Tests/Volo/Abp/Modularity/ModuleLoader_Tests.cs @@ -14,7 +14,7 @@ namespace Volo.Abp.Modularity var moduleLoader = new ModuleLoader(); var modules = moduleLoader.LoadModules( new ServiceCollection() - .AddSingleton(new InitLoggerFactory()), + .AddSingleton(new DefaultInitLoggerFactory()), typeof(MyStartupModule), new PlugInSourceList() );