From 248dea340266500e00536f6958647841a0d9610a Mon Sep 17 00:00:00 2001 From: Robert McRackan Date: Thu, 9 Sep 2021 13:26:00 -0400 Subject: [PATCH] write to log, not console --- AaxDecrypter/AaxcDownloadConverter.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/AaxDecrypter/AaxcDownloadConverter.cs b/AaxDecrypter/AaxcDownloadConverter.cs index ef24b03e..8810db0e 100644 --- a/AaxDecrypter/AaxcDownloadConverter.cs +++ b/AaxDecrypter/AaxcDownloadConverter.cs @@ -83,8 +83,7 @@ namespace AaxDecrypter } var speedup = (int)(aaxFile.Duration.TotalSeconds / (long)Elapsed.TotalSeconds); - Console.WriteLine("Speedup is " + speedup + "x realtime."); - Console.WriteLine("Done"); + Serilog.Log.Logger.Information($"Speedup is {speedup}x realtime."); return true; }