From e1bfa85e7b13aa7998ecfc1268249e7108025e7d Mon Sep 17 00:00:00 2001 From: JT Date: Tue, 6 Jun 2023 00:24:37 -0700 Subject: [PATCH] remove progress logging --- StabilityMatrix/Models/ProgressReport.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/StabilityMatrix/Models/ProgressReport.cs b/StabilityMatrix/Models/ProgressReport.cs index 2b680afc..e0cc8525 100644 --- a/StabilityMatrix/Models/ProgressReport.cs +++ b/StabilityMatrix/Models/ProgressReport.cs @@ -30,7 +30,6 @@ public record struct ProgressReport Title = title; Message = message; IsIndeterminate = isIndeterminate; - LogManager.GetCurrentClassLogger().Log(LogLevel.Info, this); } public ProgressReport(ulong current, ulong total, string? title = null, string? message = null, bool isIndeterminate = false) @@ -41,7 +40,6 @@ public record struct ProgressReport Title = title; Message = message; IsIndeterminate = isIndeterminate; - LogManager.GetCurrentClassLogger().Log(LogLevel.Info, this); } public ProgressReport(ulong current, string? title = null, string? message = null) @@ -50,6 +48,5 @@ public record struct ProgressReport Title = title; Message = message; IsIndeterminate = true; - LogManager.GetCurrentClassLogger().Log(LogLevel.Info, this); } }