We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a757bf8 commit f5a2a52Copy full SHA for f5a2a52
proxy/run.go
@@ -82,12 +82,12 @@ func Run(ctx context.Context, args []string) int {
82
if config.Config != nil {
83
bytes, err := io.ReadAll(config.Config)
84
if err != nil {
85
- cliCtx.Errorf("unable to read contents of configuration file '%s': ", config.Config.Name(), err)
+ cliCtx.Errorf("unable to read contents of configuration file '%s': %v", config.Config.Name(), err)
86
return 1
87
}
88
err = yaml.Unmarshal(bytes, &config)
89
90
- cliCtx.Errorf("invalid YAML in configuration file '%s': ", config.Config.Name(), err)
+ cliCtx.Errorf("invalid YAML in configuration file '%s': %v", config.Config.Name(), err)
91
92
93
0 commit comments