1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-15 13:47:24 +08:00

Fix OsuGameBase.Migrate() eating exception messages for breakfast

Whomst've thought this was an ok thing to do? How did this pass review?
Let's leave these as rhetorical questions right now. Huge chances are
I'd implicate myself with at least one of them.
This commit is contained in:
Bartłomiej Dach 2024-10-08 23:12:25 +02:00
parent 310eec69fc
commit 1633cbdb66
No known key found for this signature in database

View File

@ -545,7 +545,10 @@ namespace osu.Game
realmBlocker = realm.BlockAllOperations("migration");
success = true;
}
catch { }
catch (Exception ex)
{
Logger.Log($"Attempting to block all operations failed: {ex}", LoggingTarget.Database);
}
readyToRun.Set();
}, false);