From 758df510e3a5123e2b3a0acb10f6c15e43a5a206 Mon Sep 17 00:00:00 2001 From: Dustin Pianalto Date: Thu, 18 Nov 2021 12:18:27 -0900 Subject: [PATCH] Remove testing log output --- errors.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/errors.go b/errors.go index 5062525..35bd940 100644 --- a/errors.go +++ b/errors.go @@ -3,7 +3,6 @@ package errors import ( "bytes" "fmt" - "log" ) var ( @@ -48,7 +47,6 @@ func E(args ...interface{}) error { case error: e.Err = arg default: - log.Println(args) return Errorf("unknown type %T with value %v in error call", arg, arg) } }