diff --git a/pkg/common/testflag.go b/pkg/common/testflag.go deleted file mode 100644 index 4988563d..00000000 --- a/pkg/common/testflag.go +++ /dev/null @@ -1,20 +0,0 @@ -package common - -import ( - "context" -) - -type testFlagContextKey string - -const testFlagContextKeyVal = testFlagContextKey("test-context") - -// TestContext returns whether the context has the test flag set -func TestContext(ctx context.Context) bool { - val := ctx.Value(testFlagContextKeyVal) - return val != nil -} - -// WithTextContext sets the test flag in the context -func WithTestContext(ctx context.Context) context.Context { - return context.WithValue(ctx, testFlagContextKeyVal, true) -} diff --git a/pkg/runner/logger.go b/pkg/runner/logger.go index 348f185c..a5751b08 100644 --- a/pkg/runner/logger.go +++ b/pkg/runner/logger.go @@ -58,12 +58,6 @@ func WithJobLogger(ctx context.Context, jobName string, config *Config, masks *[ nextColor++ logger := logrus.New() - if common.TestContext(ctx) { - fieldLogger := common.Logger(ctx) - if fieldLogger != nil { - logger = fieldLogger.(*logrus.Logger) - } - } logger.SetFormatter(formatter) logger.SetOutput(os.Stdout) logger.SetLevel(logrus.GetLevel())