From ba1844ca997868e63232a89539338a1ea48bae97 Mon Sep 17 00:00:00 2001 From: nilaoda Date: Wed, 28 Jun 2023 13:08:55 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E6=97=A5=E5=BF=97=E5=86=99?= =?UTF-8?q?=E5=85=A5BUG?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/N_m3u8DL-RE.Common/Log/Logger.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/N_m3u8DL-RE.Common/Log/Logger.cs b/src/N_m3u8DL-RE.Common/Log/Logger.cs index ee006f4..775403f 100644 --- a/src/N_m3u8DL-RE.Common/Log/Logger.cs +++ b/src/N_m3u8DL-RE.Common/Log/Logger.cs @@ -88,7 +88,7 @@ namespace N_m3u8DL_RE.Common.Log LogWriteLock.EnterWriteLock(); using (StreamWriter sw = File.AppendText(LogFilePath)) { - sw.WriteLine(plain, Encoding.UTF8); + sw.WriteLine(plain); } } finally