diff options
| author | Jeff Carr <[email protected]> | 2025-10-22 17:25:00 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-22 17:25:00 -0500 |
| commit | 8ae45ad4992a156dc5631a937aab4ee56a8e638c (patch) | |
| tree | ad22953f2de39d5d7d15f512d4274eebac2c03a2 /table.go | |
| parent | 4bf7ba47adcc25fa11a532f3e729d0f321e19e58 (diff) | |
remove logv0.0.4
Diffstat (limited to 'table.go')
| -rw-r--r-- | table.go | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -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 { |
