Skip to content

Commit 90fb205

Browse files
committed
suppress BinaryStorage.cs exception when loading
1 parent 8527035 commit 90fb205

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Flow.Launcher.Infrastructure/Storage/BinaryStorage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ private async ValueTask<T> DeserializeAsync(Stream stream, T defaultData)
6767
}
6868
catch (System.Exception e)
6969
{
70-
Log.Exception($"|BinaryStorage.Deserialize|Deserialize error for file <{FilePath}>", e);
70+
// Log.Exception($"|BinaryStorage.Deserialize|Deserialize error for file <{FilePath}>", e);
7171
return defaultData;
7272
}
7373
}

0 commit comments

Comments
 (0)