From 3ace32a95b88c7cd6e74f02291cfcaccc21438b4 Mon Sep 17 00:00:00 2001 From: Max Wash Date: Sun, 14 Jun 2026 20:27:46 +0100 Subject: [PATCH] runtime: native-command: remove logging from record processing --- bshell.runtime/command/native-command.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/bshell.runtime/command/native-command.c b/bshell.runtime/command/native-command.c index 631d0d0..221953d 100644 --- a/bshell.runtime/command/native-command.c +++ b/bshell.runtime/command/native-command.c @@ -91,7 +91,6 @@ static enum bshell_status begin_processing( { struct bshell_native_command_p *cmd_p = fx_object_get_private(cmd, BSHELL_TYPE_NATIVE_COMMAND); - printf("begin processing '%s'\n", fx_string_get_cstr(cmd_p->cmd_path)); int flags = 0; switch (position) { case BSHELL_COMMAND_POSITION_BEGINNING: @@ -117,7 +116,6 @@ static enum bshell_status process_record( { struct bshell_native_command_p *cmd_p = fx_object_get_private(cmd, BSHELL_TYPE_NATIVE_COMMAND); - printf("process record '%s'\n", fx_string_get_cstr(cmd_p->cmd_path)); if (cmd_p->cmd_flags & F_REDIRECT_STDIN) { fx_value in = bshell_pipeline_read_value(pipeline); @@ -161,7 +159,6 @@ static enum bshell_status end_processing(bshell_command *cmd) { struct bshell_native_command_p *cmd_p = fx_object_get_private(cmd, BSHELL_TYPE_NATIVE_COMMAND); - printf("end processing '%s'\n", fx_string_get_cstr(cmd_p->cmd_path)); if (cmd_p->cmd_writer_init) { bshell_value_writer_cleanup(&cmd_p->cmd_writer); cmd_p->cmd_writer_init = false;