Skip to content

Commit

Permalink
Updating component config error messages
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Hein <me@chrishein.com>
  • Loading branch information
christopherhein committed Nov 7, 2020
1 parent 8d01076 commit 12a68d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ func (d *DeferredFileLoader) loadFile() {

content, err := ioutil.ReadFile(d.path)
if err != nil {
d.err = fmt.Errorf("file could not be read from filesystem")
d.err = fmt.Errorf("could not read file at %s", d.path)
return
}

Expand Down

0 comments on commit 12a68d5

Please sign in to comment.