From f3fe5ab0b77266faa53be6f73aac0d32ef511af1 Mon Sep 17 00:00:00 2001 From: Ivan Yarcev Date: Tue, 14 Jan 2025 17:19:30 +0600 Subject: [PATCH] Added debut output for system deletion commands --- source/ubl-settings-usergroups-system.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/ubl-settings-usergroups-system.c b/source/ubl-settings-usergroups-system.c index 0047481..d4e0c8f 100644 --- a/source/ubl-settings-usergroups-system.c +++ b/source/ubl-settings-usergroups-system.c @@ -12,7 +12,7 @@ void on_delete_system_user(GtkWidget *, yon_confirmation_window *dialog){ else command = delete_home_status?remove_user_and_homedir_from_system_command(target):remove_user_from_system_command(target); } if (!yon_char_is_empty(command)){ - yon_launch(command); + yon_launch(yon_debug_output("%s\n",command)); } on_subwindow_close(dialog->Window); } @@ -29,7 +29,7 @@ void on_delete_system_group(GtkWidget *, yon_confirmation_window *dialog){ else command = remove_group_from_system_command(target); } if (!yon_char_is_empty(command)){ - yon_launch(command); + yon_launch(yon_debug_output("%s\n",command)); } on_subwindow_close(dialog->Window); }