summaryrefslogtreecommitdiff
path: root/notsure.go
diff options
context:
space:
mode:
Diffstat (limited to 'notsure.go')
-rw-r--r--notsure.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/notsure.go b/notsure.go
index 2d4c649..f9288b1 100644
--- a/notsure.go
+++ b/notsure.go
@@ -1,6 +1,6 @@
package argvpb
-import "go.wit.com/log"
+import "fmt"
// these are things I'm not sure about doing
// or haven't figured out what to do with
@@ -16,8 +16,8 @@ type ArgsBash struct {
// maybe this is a good idea, maybe not
func (pb *Argv) Gui() bool {
- log.Printf("CUR pb: %v\n", pb)
- log.Info("CUR ARGV:", pb.Real)
+ fmt.Printf("CUR pb: %v\n", pb)
+ fmt.Println("CUR ARGV:", pb.Real)
if "gui" == pb.GetCmd() {
return true
}
@@ -25,5 +25,5 @@ func (pb *Argv) Gui() bool {
}
func (pb *Argv) Dump() {
- log.Printf("CUR pb: %v\n", pb)
+ fmt.Printf("CUR pb: %v\n", pb)
}