1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-20 20:20:28 +08:00

Make debug input toggle post notifications

This commit is contained in:
Bartłomiej Dach
2023-11-06 11:50:04 +01:00
Unverified
parent 682668ccf0
commit 39ad91feea
+1 -1
View File
@@ -65,7 +65,7 @@ namespace osu.Game.Input
[Conditional("TOUCH_INPUT_DEBUG")]
private void debugToggleTouchInputActive()
{
Logger.Log($@"Debug-toggling touch input to {(touchInputActive.Value ? @"inactive" : @"active")}", LoggingTarget.Input, LogLevel.Debug);
Logger.Log($@"Debug-toggling touch input to {(touchInputActive.Value ? @"inactive" : @"active")}", LoggingTarget.Information, LogLevel.Important);
touchInputActive.Toggle();
}
}