summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-22 17:28:58 -0500
committerJeff Carr <[email protected]>2025-10-22 17:28:58 -0500
commit9ef254b7d90e59daea73f6d0b08eaa0e7eb1dc8d (patch)
tree7939171c8dcfecefbe212ed3b8222a0ef3b8d16c
parentc80607489ccab9f72a1efe860757725896515f87 (diff)
remove logv0.0.29
-rw-r--r--dumbTable.go11
-rw-r--r--time.string.go2
2 files changed, 6 insertions, 7 deletions
diff --git a/dumbTable.go b/dumbTable.go
index bce0b91..1e09caa 100644
--- a/dumbTable.go
+++ b/dumbTable.go
@@ -3,9 +3,8 @@
package cobol
import (
+ "fmt"
"strings"
-
- "go.wit.com/log"
)
func DumbTable(data string) {
@@ -31,7 +30,7 @@ func DumbTable(data string) {
parts := strings.Fields(line)
line, fmtline := StandardTableRow(sizes, parts)
_ = fmtline
- log.Info(line)
+ fmt.Println(line)
}
}
@@ -46,7 +45,7 @@ func DumbTable3(lines []string) {
}
parts := strings.Fields(line)
if len(parts) != 3 {
- log.Info(parts)
+ fmt.Println(parts)
// panic("not 3 things")
continue
}
@@ -64,12 +63,12 @@ func DumbTable3(lines []string) {
for _, line := range lines {
parts := strings.Fields(line)
if len(parts) != 3 {
- log.Info(parts)
+ fmt.Println(parts)
// panic("not 3 things")
continue
}
line, fmtline := StandardTableRow(sizes, parts)
_ = fmtline
- log.Info(line)
+ fmt.Println(line)
}
}
diff --git a/time.string.go b/time.string.go
index 5d15abe..0aa2714 100644
--- a/time.string.go
+++ b/time.string.go
@@ -40,7 +40,7 @@ func doTimeString(BUILDTIME string) (*time.Time, error) {
}
if len(parts) >= 2 {
if len(parts[0]) == 10 && len(parts[1]) == 8 {
- // log.Info("GOT HERE also", BUILDTIME)
+ // fmt.Println("GOT HERE also", BUILDTIME)
const layout = "2006/01/02 15:04:05"
t, err := time.ParseInLocation(layout, parts[0]+" "+parts[1], time.UTC)
if err == nil {