修改命名

This commit is contained in:
lindexi
2022-03-02 14:46:07 +08:00
parent 6d4cffd034
commit 4c5fd58b87

View File

@@ -9,14 +9,14 @@ using System.Threading.Tasks;
namespace dotnetCampus.ApplicationStartupManager namespace dotnetCampus.ApplicationStartupManager
{ {
public class StartupLogger : IStartupLogger public class StartupLoggerBase : IStartupLogger
{ {
private readonly Stopwatch _mainWatch; private readonly Stopwatch _mainWatch;
private readonly ConcurrentDictionary<string, (string name, long start, long elapsed)> private readonly ConcurrentDictionary<string, (string name, long start, long elapsed)>
_milestoneDictionary = new ConcurrentDictionary<string, (string, long, long)>(); _milestoneDictionary = new ConcurrentDictionary<string, (string, long, long)>();
public StartupLogger() public StartupLoggerBase()
{ {
_mainWatch = new Stopwatch(); _mainWatch = new Stopwatch();
_mainWatch.Start(); _mainWatch.Start();