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 63ca4fb commit 99c7a1dCopy full SHA for 99c7a1d
pkg/config/reader.go
@@ -74,15 +74,16 @@ func (r *FileReader) parseConfig() error {
74
75
if usedConfigFile == os.Stdin.Name() {
76
usedConfigFile = ""
77
+ r.log.Infof("Reading config file stdin")
78
} else {
79
var err error
80
usedConfigFile, err = fsutils.ShortestRelPath(usedConfigFile, "")
81
if err != nil {
82
r.log.Warnf("Can't pretty print config file path: %v", err)
83
}
- }
84
85
- r.log.Infof("Used config file %s", usedConfigFile)
+ r.log.Infof("Used config file %s", usedConfigFile)
86
+ }
87
88
usedConfigDir, err := filepath.Abs(filepath.Dir(usedConfigFile))
89
0 commit comments