summaryrefslogtreecommitdiff
path: root/table.go
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 /table.go
parent4bf7ba47adcc25fa11a532f3e729d0f321e19e58 (diff)
remove logv0.0.4
Diffstat (limited to 'table.go')
-rw-r--r--table.go6
1 files changed, 2 insertions, 4 deletions
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 {