diff options
| author | Jeff Carr <[email protected]> | 2025-09-10 22:35:37 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-10 22:35:37 -0500 |
| commit | fe4b47339a9c2d15d1acc0700263239b73e21b3d (patch) | |
| tree | 6a7eedd4f45481edc0e5a1cf801ff13aed1a494d /load.go | |
| parent | 2943d44b4a8d22af330d6aeb77f8808e8929cc86 (diff) | |
wasn't using Format()
Diffstat (limited to 'load.go')
| -rw-r--r-- | load.go | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -34,9 +34,11 @@ func ConfigLoad(pb proto.Message, argname string, protoname string) error { } fullname = filepath.Join(homeDir, ".config", argname, protoname+".text") + if data, err = loadFile(fullname); err != nil { log.Warn("config file failed to load", err) - // something went wrong loading the file + // set pb.Filename that was attempted + SetFilename(pb, fullname) return err } @@ -50,9 +52,6 @@ func ConfigLoad(pb proto.Message, argname string, protoname string) error { return err } - // set pb.Filename if it is there in the .proto file - SetFilename(pb, fullname) - log.Infof("ConfigLoad() arg=%s, proto=%s\n", argname, protoname) return nil } |
