Skip to content

Commit 9f0367a

Browse files
authored
Merge pull request #1251 from christopherhein/bug/componentconfig-error-handling
✨ Updating Component Config error messages
2 parents 8d01076 + 12a68d5 commit 9f0367a

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)