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); }