From 88d0ce908c76d98a29ab5ffc3417248f951493fb Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 24 Oct 2025 11:28:43 -0500 Subject: removing log from here --- gui.go | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'gui.go') diff --git a/gui.go b/gui.go index 1146e52..242efa9 100644 --- a/gui.go +++ b/gui.go @@ -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") } -- cgit v1.2.3