From 2e1f8d8c0517967025441716fdcae87f7b227129 Mon Sep 17 00:00:00 2001 From: genteure Date: Sat, 18 Dec 2021 20:38:27 +0800 Subject: [PATCH] WPF: Fix typo --- BililiveRecorder.WPF/WorkDirectoryLoader.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BililiveRecorder.WPF/WorkDirectoryLoader.cs b/BililiveRecorder.WPF/WorkDirectoryLoader.cs index a91cb86..85b12b7 100644 --- a/BililiveRecorder.WPF/WorkDirectoryLoader.cs +++ b/BililiveRecorder.WPF/WorkDirectoryLoader.cs @@ -57,13 +57,13 @@ namespace BililiveRecorder.WPF { try { - logger.Debug("Writing path file at {FilePathj}", this.filePath); + logger.Debug("Writing path file at {FilePath}", this.filePath); var str = JsonConvert.SerializeObject(data); Core.Config.ConfigParser.WriteAllTextWithBackup(this.filePath, str); } catch (Exception ex) { - logger.Warning(ex, "Error writing path file at {FilePathj}", this.filePath); + logger.Warning(ex, "Error writing path file at {FilePath}", this.filePath); } }