summaryrefslogtreecommitdiff
path: root/gui.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-24 11:28:43 -0500
committerJeff Carr <[email protected]>2025-10-24 11:28:43 -0500
commit88d0ce908c76d98a29ab5ffc3417248f951493fb (patch)
treeb50a0917f1a1d713fdb5addc6e65dd2842b98fe9 /gui.go
parent2b46985ae8def4ff5779fbc027a6ddbe7a1a6a8d (diff)
removing log from herev0.0.44
Diffstat (limited to 'gui.go')
-rw-r--r--gui.go18
1 files changed, 9 insertions, 9 deletions
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")
}