Skip to content

Commit 8e4967c

Browse files
committed
remove fmt.Println
1 parent b07df62 commit 8e4967c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

config/config.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// package config defines the schemas and functionality of the .mockery.yml
1+
// Package config defines the schemas and functionality of the .mockery.yml
22
// config files. This package is NOT meant to be used by external Go libraries.
33
// We expose the contents of this package purely for documentation purposes.
44
//
@@ -775,7 +775,6 @@ func ExtractDirectiveConfig(ctx context.Context, decl *ast.GenDecl) (*Config, er
775775
// Parse the YAML directly into the directiveConfig struct
776776
directiveConfig := Config{}
777777
if err := yaml.Unmarshal([]byte(yamlDoc), &directiveConfig); err != nil {
778-
fmt.Println(yamlDoc)
779778
return nil, fmt.Errorf("unmarshaling directive yaml: %w", err)
780779
}
781780

0 commit comments

Comments
 (0)