From d2e1a6c6c870ba0a2a7ede14d1bcb91d33490825 Mon Sep 17 00:00:00 2001 From: Giovanni Harting <539@idlegandalf.com> Date: Sun, 23 Mar 2025 15:40:08 +0100 Subject: [PATCH] fixed debug out --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 963eb55..a2d992a 100644 --- a/main.go +++ b/main.go @@ -69,7 +69,7 @@ func main() { } if len(packagesInQueue) > 0 { - log.Debugf("found %d of your local packages in queue", packagesInQueue) + log.Debugf("found %d of your local packages in queue", len(packagesInQueue)) if *jsonFlag { err = json.NewEncoder(os.Stdout).Encode(JSONOut{ InQueue: len(packagesInQueue),