diff options
| author | Jeff Carr <[email protected]> | 2025-10-21 07:51:50 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-21 07:51:50 -0500 |
| commit | 303064638637e8ab89313ace25b73fc02cb46408 (patch) | |
| tree | 7b65c9ac5dae33073cbeb6900f922cdbeff2bd8a /save.go | |
| parent | 3cf635e3c41be385b50778f7818fd50b006f1671 (diff) | |
cleanups in isle #9
Diffstat (limited to 'save.go')
| -rw-r--r-- | save.go | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -3,8 +3,6 @@ package ENV import ( "os" "strings" - - "go.wit.com/log" ) // saves your applications config file @@ -25,10 +23,10 @@ func saveENV() error { func saveENVnolock(filename string) error { outENV, err := formatENV() if err == nil { - log.Info("SAVEENV IS RUNNING") - log.Info("SAVEENV IS RUNNING") - log.Info("SAVEENV IS RUNNING") - log.Info(outENV) + // log.Info("SAVEENV IS RUNNING") + // log.Info("SAVEENV IS RUNNING") + // log.Info("SAVEENV IS RUNNING") + // log.Info(outENV) } return os.WriteFile(filename, []byte(outENV), 0644) } |
