diff options
| author | Jeff Carr <[email protected]> | 2025-10-21 15:48:46 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-21 15:48:46 -0500 |
| commit | d54c59107289968116211111ff52850768fcec24 (patch) | |
| tree | cb4559e8d06a8fa6747afa732c8f0f7099ed2b72 /Save.go | |
| parent | 9a3a2e16c7fc8769a9a6af5f598acb3ffc77e4b4 (diff) | |
stomping the guts out of how bad this is
Diffstat (limited to 'Save.go')
| -rw-r--r-- | Save.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -56,7 +56,7 @@ func (f *Forge) Save() error { // todo: deprecate this fc.GoPath = "" // I want to do this but it might be a bad idea at this point } - log.Info("Okay, this is", argvpb.GetAPPNAME()) + log.Printf("%s Save() about to save Config at %s\n", argvpb.GetAPPNAME(), f.Config.Filename) err = f.Config.configSave() if err != nil { @@ -143,7 +143,7 @@ func (f *Forge) configSave() error { // todo: deprecate this // fc.GoPath = "" // I want to do this but it might be a bad idea at this point } - log.Info("Okay, this is", argvpb.GetAPPNAME()) + log.Printf("%s configSave() about to save Config at %s\n", argvpb.GetAPPNAME(), f.Config.Filename) if err := f.Config.configSave(); err != nil { log.Info("forge.Config.ConfigSave() error", err) |
