From 18c582f0ddb8aca9fb3eaa231a8c527ce270d63c Mon Sep 17 00:00:00 2001 From: nerdopolis Date: Wed, 6 Dec 2023 07:23:09 -0500 Subject: [PATCH] ply-terminal-emulator: Don't spam the debug logs with the two most-common commands --- src/libply-splash-core/ply-terminal-emulator.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/libply-splash-core/ply-terminal-emulator.c b/src/libply-splash-core/ply-terminal-emulator.c index eb323f38..5ce0a8db 100644 --- a/src/libply-splash-core/ply-terminal-emulator.c +++ b/src/libply-splash-core/ply-terminal-emulator.c @@ -738,8 +738,6 @@ on_control_sequence_set_attributes (ply_terminal_emulator_t *terminal_emulator, ply_terminal_color_t default_foreground_color = PLY_TERMINAL_COLOR_DEFAULT; ply_terminal_color_t default_background_color = PLY_TERMINAL_COLOR_DEFAULT; - ply_trace ("terminal control sequence: set attributes"); - assert (code == 'm'); if (paramaters_valid != true) @@ -915,8 +913,6 @@ ply_terminal_emulator_break_string_t on_escape_character_linefeed (ply_terminal_emulator_t *terminal_emulator, const char code) { - ply_trace ("terminal escape character: line feed"); - assert (code == '\n' || code == '\v' || code == '\f'); terminal_emulator->cursor_row_offset++; -- 2.47.3