]> git.ipfire.org Git - thirdparty/plymouth.git/commitdiff
ply-terminal-emulator: Don't spam the debug logs with the two most-common commands
authornerdopolis <bluescreen_avenger@verizon.net>
Wed, 6 Dec 2023 12:23:09 +0000 (07:23 -0500)
committern3rdopolis <bluescreenavenger@gmail.com>
Wed, 6 Dec 2023 22:47:44 +0000 (22:47 +0000)
src/libply-splash-core/ply-terminal-emulator.c

index eb323f3815f4dfd3960a061c7415013e4b77bb7c..5ce0a8db0fd9cb6beeb04ff2f083b189e87581ec 100644 (file)
@@ -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++;