From 20aa2d76d1ad0257174d1748c84e613dd323c2c5 Mon Sep 17 00:00:00 2001 From: xezrunner <8061077+xezrunner@users.noreply.github.com> Date: Wed, 21 Aug 2024 19:00:10 +0200 Subject: [PATCH] documents: use *:Critical for log silencing example --- documents/Debugging/Debugging.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documents/Debugging/Debugging.md b/documents/Debugging/Debugging.md index b9c3d8580..39f171e40 100644 --- a/documents/Debugging/Debugging.md +++ b/documents/Debugging/Debugging.md @@ -60,7 +60,7 @@ You can configure the emulator by editing the `config.toml` file found in the `u - Valid log levels: `Trace, Debug, Info, Warning, Error, Critical` - in this order, setting a level silences all levels preceding it and logs every level after it. - Examples: - If the log is being spammed with messages coming from Lib.Pad, you can use `Lib.Pad:Critical` to only log critical-level messages. - - If you'd like to mute everything, but still want to receive messages from Vulkan rendering: `*:Error Render.Vulkan:Info` + - If you'd like to mute everything, but still want to receive messages from Vulkan rendering: `*:Critical Render.Vulkan:Info` - `Fullscreen`: Display the game in a full screen borderless window.