summaryrefslogtreecommitdiff
path: root/init.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-11-06 11:30:36 -0600
committerJeff Carr <[email protected]>2025-11-06 11:30:36 -0600
commita070620dc0ffc1eabf65248bfc230b7a742351a3 (patch)
tree90e90452ae74b73ea8b930c2d86c57dfb411f35a /init.go
parent6b8742f6898e4cf8a8d1306c262afeb321c0e0a1 (diff)
quiet code that got left inHEADv0.0.55masterdevel
Diffstat (limited to 'init.go')
-rw-r--r--init.go7
1 files changed, 3 insertions, 4 deletions
diff --git a/init.go b/init.go
index fee4078..0660c00 100644
--- a/init.go
+++ b/init.go
@@ -1,7 +1,6 @@
package argvpb
import (
- "fmt"
"time"
"github.com/google/uuid"
@@ -38,12 +37,12 @@ func Init(dest any, APPNAME string, anyString string, VERSION string) {
// everyhting is working. BUILDTIME is *time.Time
app.BUILDTIME = cobol.Time(BUILDTIME)
} else if err == nil {
- newtime := BUILDTIME.Add(-36 * time.Hour)
+ // newtime := BUILDTIME.Add(-36 * time.Hour)
app.BUILDTIME = cobol.Time(BUILDTIME)
- fmt.Printf("TIME initAppname() ERR=(%v) anyString=(%v) GetTime.BUILTIME=(%v) app.BUILDTIME=(%v)\n", err, anyString, newtime, app.BUILDTIME)
+ // fmt.Printf("TIME initAppname() ERR=(%v) anyString=(%v) GetTime.BUILTIME=(%v) app.BUILDTIME=(%v)\n", err, anyString, newtime, app.BUILDTIME)
} else {
app.BUILDTIME = anyString
- fmt.Printf("TIME initAppname() ERR=(%v) anyString=(%v) GetTime.BUILTIME=(%v) app.BUILDTIME=(%v)\n", err, anyString, BUILDTIME, app.BUILDTIME)
+ // fmt.Printf("TIME initAppname() ERR=(%v) anyString=(%v) GetTime.BUILTIME=(%v) app.BUILDTIME=(%v)\n", err, anyString, BUILDTIME, app.BUILDTIME)
}
PB.AppInfo = app