From 80e86ff56271eee44d84d20c8f438fc0b97fd286 Mon Sep 17 00:00:00 2001 From: Carlos Alexandro Becker Date: Mon, 1 Mar 2021 10:34:08 -0300 Subject: [PATCH] chore: remove log Signed-off-by: Carlos Alexandro Becker --- glob.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/glob.go b/glob.go index f84c530..d2df9b7 100644 --- a/glob.go +++ b/glob.go @@ -5,7 +5,6 @@ import ( "fmt" "io" "io/fs" - "log" "os" "path/filepath" "strings" @@ -110,7 +109,6 @@ func Glob(pattern string, opts ...OptFunc) ([]string, error) { // nolint:funlen, return matches, fmt.Errorf("failed to resolve pattern: %s: %w", pattern, err) } pattern = filepath.ToSlash(p) - log.Println("new pattern", pattern) } options := compileOptions(opts, pattern)