mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 08:49:59 +09:00
Add more verbose logging to realm blocking process
This commit is contained in:
@ -39,7 +39,7 @@ namespace osu.Game.Overlays.Settings.Sections.DebugSettings
|
||||
Action = () =>
|
||||
{
|
||||
// Blocking operations implicitly causes a Compact().
|
||||
using (realm.BlockAllOperations())
|
||||
using (realm.BlockAllOperations("compact"))
|
||||
{
|
||||
}
|
||||
}
|
||||
@ -58,7 +58,7 @@ namespace osu.Game.Overlays.Settings.Sections.DebugSettings
|
||||
{
|
||||
try
|
||||
{
|
||||
var token = realm.BlockAllOperations();
|
||||
var token = realm.BlockAllOperations("maintenance");
|
||||
|
||||
blockAction.Enabled.Value = false;
|
||||
|
||||
|
Reference in New Issue
Block a user