summaryrefslogtreecommitdiff
path: root/time.string.go
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 /time.string.go
parentc80607489ccab9f72a1efe860757725896515f87 (diff)
remove logv0.0.29
Diffstat (limited to 'time.string.go')
-rw-r--r--time.string.go2
1 files changed, 1 insertions, 1 deletions
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 {