1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-13 04:32:57 +08:00

Make debug input toggle post notifications

This commit is contained in:
Bartłomiej Dach 2023-11-06 11:50:04 +01:00
parent 682668ccf0
commit 39ad91feea
No known key found for this signature in database

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();
}
}