suppress BinaryStorage.cs exception when loading

This commit is contained in:
Hongtao Zhang 2024-05-30 14:21:07 -05:00
parent 85270358ac
commit 90fb2051c9

View file

@ -67,7 +67,7 @@ namespace Flow.Launcher.Infrastructure.Storage
}
catch (System.Exception e)
{
Log.Exception($"|BinaryStorage.Deserialize|Deserialize error for file <{FilePath}>", e);
// Log.Exception($"|BinaryStorage.Deserialize|Deserialize error for file <{FilePath}>", e);
return defaultData;
}
}