diff options
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 { |
