From 9f89d5c8da1c969232083e4d64cf89f697b0690a Mon Sep 17 00:00:00 2001 From: FutureRave Date: Sat, 20 May 2023 21:33:23 +0100 Subject: [PATCH] maint: add useful prints --- src/main.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index b31eb08..d7c3252 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -58,6 +58,8 @@ namespace if (to_kill != nullptr) { + console::info("Attempting to kill %s", to_kill); + const auto packet = format_command(true); s.send(master, packet); @@ -65,6 +67,8 @@ namespace } else if (to_remove != nullptr) { + console::info("Attempting to restore %s", to_remove); + const auto packet = format_command(false); s.send(master, packet);