Skip to content

Commit 12a68d5

Browse files
Updating component config error messages
Signed-off-by: Chris Hein <[email protected]>
1 parent 8d01076 commit 12a68d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ func (d *DeferredFileLoader) loadFile() {
9898

9999
content, err := ioutil.ReadFile(d.path)
100100
if err != nil {
101-
d.err = fmt.Errorf("file could not be read from filesystem")
101+
d.err = fmt.Errorf("could not read file at %s", d.path)
102102
return
103103
}
104104

0 commit comments

Comments
 (0)