From 28ee4a090470718752785556ecd6569df2638522 Mon Sep 17 00:00:00 2001 From: Daniel Antonsen <44880186+root4loot@users.noreply.github.com> Date: Tue, 1 Oct 2024 12:15:11 +0200 Subject: [PATCH] Remove redundant error --- cmd/main.go | 1 - 1 file changed, 1 deletion(-) diff --git a/cmd/main.go b/cmd/main.go index ce62cfc..0929b4f 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -137,7 +137,6 @@ func parseCLI() ([]string, *CLI, error) { log.Info(Version) return nil, nil, fmt.Errorf("version: %s", Version) } else { - log.Error("Missing URL/file input. No targets provided.") return nil, nil, fmt.Errorf("missing URL/file input. No targets provided") } }