Skip to content

Commit

Permalink
修正日志写入BUG
Browse files Browse the repository at this point in the history
  • Loading branch information
nilaoda committed Jun 28, 2023
1 parent c5523c9 commit ba1844c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/N_m3u8DL-RE.Common/Log/Logger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ private static void HandleLog(string write, string subWrite = "")
LogWriteLock.EnterWriteLock();
using (StreamWriter sw = File.AppendText(LogFilePath))
{
sw.WriteLine(plain, Encoding.UTF8);
sw.WriteLine(plain);
}
}
finally
Expand Down

0 comments on commit ba1844c

Please sign in to comment.