diff options
Diffstat (limited to 'gui.go')
| -rw-r--r-- | gui.go | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -1,10 +1,10 @@ package argvpb import ( + "fmt" "os" "go.wit.com/lib/cobol" - "go.wit.com/log" ) // this has been deprecated @@ -28,13 +28,13 @@ func (g *GuiPrep) Start() error { // provides a runtime warning to the user that the app was compiled but lacks working features func workInProgress() { s := "Mon Oct 13 10:48:16 CDT 2025" - log.Info(cobol.Time(s) + ": " + os.Args[0] + ": argv features are disabled") - log.Info(cobol.Time(s) + ": argv features are under active development") - log.Info(cobol.Time(s) + ":") - log.Info(cobol.Time(s) + ": argv Gui() support has been moved to go.wit.com/lib/fhelp") - log.Info(cobol.Time(s) + ": Change your code. Example code is here:") - log.Info(cobol.Time(s) + ": go.wit.com/apps/forge/argv.go") - log.Info(cobol.Time(s) + ": go.wit.com/apps/forge/main.go") - log.Info(cobol.Time(s) + ":") + fmt.Println(cobol.Time(s) + ": " + os.Args[0] + ": argv features are disabled") + fmt.Println(cobol.Time(s) + ": argv features are under active development") + fmt.Println(cobol.Time(s) + ":") + fmt.Println(cobol.Time(s) + ": argv Gui() support has been moved to go.wit.com/lib/fhelp") + fmt.Println(cobol.Time(s) + ": Change your code. Example code is here:") + fmt.Println(cobol.Time(s) + ": go.wit.com/apps/forge/argv.go") + fmt.Println(cobol.Time(s) + ": go.wit.com/apps/forge/main.go") + fmt.Println(cobol.Time(s) + ":") // panic("deprecated") } |
