From 6f132eb589ed61ac2ff27a4656c72ff435135705 Mon Sep 17 00:00:00 2001 From: DaanSelen Date: Thu, 2 Apr 2026 12:20:44 +0200 Subject: [PATCH] chore: make it more verbose --- src/modules/runner/runner.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/modules/runner/runner.go b/src/modules/runner/runner.go index c42df24..2f9dbf4 100644 --- a/src/modules/runner/runner.go +++ b/src/modules/runner/runner.go @@ -68,12 +68,15 @@ func RunMeshbook(binPath, bookPath string, silent bool, targGroup string) (bool, outputData, err := cmd.CombinedOutput() cleanData := ansi.ReplaceAllString(string(outputData), "") + log.Println("evaluating returned state") if err != nil { log.Printf("something went wrong when running the command: %v", err) log.Printf("captured output: %s", cleanData) return false, cleanData } else { + log.Printf("captured output: %s", cleanData) + return true, cleanData } }