From a8ae2c47232634afe11843e35e9af127378a7b06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Do=C4=9Fan=20Can=20Bak=C4=B1r?= Date: Mon, 9 Oct 2023 10:30:12 +0000 Subject: [PATCH] remove duplicate log --- internal/runner/runner.go | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/runner/runner.go b/internal/runner/runner.go index 54b3235..8b2790c 100644 --- a/internal/runner/runner.go +++ b/internal/runner/runner.go @@ -102,7 +102,6 @@ func (r *Runner) Run() error { if i, ok := utils.Contains(toolList, toolName); ok { tool := toolList[i] if tool.InstallType == types.Go { - gologger.Info().Msgf("installing %s using go install", tool.Name) if err := pkg.GoInstall(r.options.Path, tool); err != nil { gologger.Error().Msgf("%s: %s", tool.Name, err) }