Before Rebuild NetProvider

This commit is contained in:
CortexCore
2025-01-24 10:36:58 +08:00
parent 0823a00396
commit 4b72602bfa
13 changed files with 402 additions and 387 deletions

View File

@@ -9,11 +9,11 @@ namespace BITKit
private readonly Stopwatch _stopwatch = new Stopwatch();
private readonly ILogger _logger;
private readonly string _message;
public StopWatcher(ILogger logger,string message)
public StopWatcher(ILogger logger,string message=null)
{
_logger = logger;
_message = message;
_logger.LogInformation($"开始计时:{message}");
_stopwatch.Start();