Skip to content

Commit f517343

Browse files
authored
update error message
1 parent fe8ad49 commit f517343

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Flow.Launcher.Infrastructure/Storage/JsonStorage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ private T LoadDefault()
6969
var data = JsonSerializer.Deserialize<T>(File.ReadAllText(BackupFilePath));
7070
if (data != null)
7171
{
72-
Log.Info($"|JsonStorage.Load|Load backup file {BackupFilePath} successfully");
72+
Log.Info($"|JsonStorage.Load|Failed to load settings.json, {BackupFilePath} restored successfully");
7373
File.Replace(BackupFilePath, FilePath, null);
7474
return data;
7575
}

0 commit comments

Comments
 (0)