diff options
| author | Jeff Carr <[email protected]> | 2025-11-06 11:30:36 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-11-06 11:30:36 -0600 |
| commit | a070620dc0ffc1eabf65248bfc230b7a742351a3 (patch) | |
| tree | 90e90452ae74b73ea8b930c2d86c57dfb411f35a /init.go | |
| parent | 6b8742f6898e4cf8a8d1306c262afeb321c0e0a1 (diff) | |
Diffstat (limited to 'init.go')
| -rw-r--r-- | init.go | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -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 |
