mirror of
https://github.com/RGBCube/serenity
synced 2025-06-01 10:08:10 +00:00
Terminal: Put debug spam in unimplemented_control_code() behind a flag
This commit is contained in:
parent
3c3e5ffe2f
commit
234d53a324
1 changed files with 1 additions and 1 deletions
|
@ -1366,7 +1366,7 @@ void Terminal::handle_key_press(KeyCode key, u32 code_point, u8 flags)
|
|||
|
||||
void Terminal::unimplemented_control_code(u8 code)
|
||||
{
|
||||
dbgln("Unimplemented control code {:02x}", code);
|
||||
dbgln_if(TERMINAL_DEBUG, "Unimplemented control code {:02x}", code);
|
||||
}
|
||||
|
||||
void Terminal::unimplemented_escape_sequence(Intermediates intermediates, u8 last_byte)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue