summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-22 17:25:00 -0500
committerJeff Carr <[email protected]>2025-10-22 17:25:00 -0500
commit8ae45ad4992a156dc5631a937aab4ee56a8e638c (patch)
treead22953f2de39d5d7d15f512d4274eebac2c03a2
parent4bf7ba47adcc25fa11a532f3e729d0f321e19e58 (diff)
remove logv0.0.4
-rw-r--r--formatENV.go9
-rw-r--r--init.go10
-rw-r--r--save.go5
-rw-r--r--table.go6
4 files changed, 12 insertions, 18 deletions
diff --git a/formatENV.go b/formatENV.go
index 3718b1f..1b4c519 100644
--- a/formatENV.go
+++ b/formatENV.go
@@ -4,8 +4,6 @@ import (
"errors"
"fmt"
"strings"
-
- "go.wit.com/log"
)
func formatENV() (string, error) {
@@ -20,20 +18,21 @@ func formatENV() (string, error) {
for c := range envPB.IterAll() {
key := strings.ToLower(c.Var)
if len(strings.Fields(key)) != 1 {
- log.Info("dropping invalid key = ", c.Var, "value =", c.Value)
+ // fmt.Println("dropping invalid key = ", c.Var, "value =", c.Value)
continue
}
found := findByLower(key)
if found == nil {
- log.Info("findByKey() got nil for key:", key)
+ // fmt.Println("findByKey() got nil for key:", key)
}
// todo: warn about duplicates?
uniques[key] = found
}
for key, c := range uniques {
+ _ = key
if c == nil {
- log.Info("key has nil c", key)
+ // fmt.Println("key has nil c", key)
continue
}
if c.Global != "" {
diff --git a/init.go b/init.go
index 03b6e89..180ee44 100644
--- a/init.go
+++ b/init.go
@@ -18,7 +18,7 @@ func Init(appname, version, buildtime string, fromargv []string, goodFunc func(s
badExit = badFunc
if envPB != nil {
- // log.Info("Init() already ran")
+ // fmt.Println("Init() already ran")
return
}
envPB = NewKeys()
@@ -41,7 +41,7 @@ func loadAppENV() error {
}
envPB.Filename = filepath.Join(configDir, APPNAME, APPNAME+".ENV")
- // log.Info("envPB.Filename", envPB.Filename)
+ // fmt.Println("envPB.Filename", envPB.Filename)
data, err := os.ReadFile(envPB.Filename)
if err != nil {
@@ -62,7 +62,7 @@ func InitValid() bool {
}
func parseENV(data string) {
- // log.Info("loadENV()", filename)
+ // fmt.Println("loadENV()", filename)
for _, line := range strings.Split(data, "\n") {
line = strings.TrimSpace(line)
if line == "" {
@@ -70,13 +70,13 @@ func parseENV(data string) {
}
parts := strings.Split(line, "=")
if len(parts) != 2 {
- // log.Info("INVALID LINE:", i, line)
+ // fmt.Println("INVALID LINE:", i, line)
continue
}
c := new(Key)
c.Var = parts[0]
c.Value = parts[1]
envPB.Append(c)
- // log.Printf("ENV LINE: (%v)\n", c)
+ // fmt.Printf("ENV LINE: (%v)\n", c)
}
}
diff --git a/save.go b/save.go
index 01b11dd..60c791d 100644
--- a/save.go
+++ b/save.go
@@ -19,10 +19,7 @@ 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)
+ // fmt.Println(outENV)
}
return os.WriteFile(filename, []byte(outENV), 0644)
}
diff --git a/table.go b/table.go
index 37e4019..d6bcb04 100644
--- a/table.go
+++ b/table.go
@@ -2,16 +2,14 @@
package ENV
-import (
- "go.wit.com/log"
-)
+import "fmt"
func PrintTable() string {
t := envPB.MakeTable("ENV table")
// limit the number of lines
t.PrintTable()
- return log.Sprintf("ENV: total=(%d)", envPB.Len())
+ return fmt.Sprintf("ENV: total=(%d)", envPB.Len())
}
func (pb *Keys) MakeTable(name string) *KeysTable {