This commit is contained in:
CortexCore
2024-12-25 11:35:30 +08:00
parent 5b7ac3c361
commit b12511b825
8 changed files with 100 additions and 63 deletions

View File

@@ -13,8 +13,12 @@ namespace BITKit
{
_logger = logger;
_message = message;
_logger.LogInformation($"开始计时:{message}");
_logger.LogInformation($"开始计时:{message}");
_stopwatch.Start();
}
public void Dispose()
{
_stopwatch.Stop();