diff options
Diffstat (limited to 'auto.Print.go')
| -rw-r--r-- | auto.Print.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/auto.Print.go b/auto.Print.go index b992e65..6c0d489 100644 --- a/auto.Print.go +++ b/auto.Print.go @@ -32,7 +32,7 @@ func (pb *Auto) Debugf(fmts string, parts ...any) { // print out auto complete debugging info func (pb *Auto) PrintDebug() { dur := pb.Duration.AsDuration() - pb.Debugf("AUTOCOMPLETE: arg0='%s' arg1='%s' partial='%s' cmd='%s' age=%s argv=%v\n", pb.Arg0, pb.Arg1, pb.Partial, pb.Cmd, cobol.FormatDuration(dur), pb.Argv) + pb.Debugf("ARGV: 0='%s' 1='%s' p='%s' cmd='%s' age=(%s) argv=%v fast=%v\n", pb.Arg0, pb.Arg1, pb.Partial, pb.Cmd, cobol.FormatDuration(dur), pb.Argv, pb.Fast) } func (pb *Autos) PrintHistory() { @@ -42,7 +42,7 @@ func (pb *Autos) PrintHistory() { partial := fmt.Sprintf("p='%s'", found.Partial) dur := time.Since(found.Ctime.AsTime()) age := fmt.Sprintf("age=(%s)", cobol.FormatDuration(dur)) - found.Debugf("AUTO HISTORY: %s %-18.18s %-18.18s %-12.12s argv='%v' goargs='%v'", age, cmd, arglast, partial, found.Argv, found.Goargs) + found.Debugf("HIST: %s %-18.18s %-18.18s %-12.12s argv='%v' fast=%v goargs='%v'", age, cmd, arglast, partial, found.Argv, found.Fast, found.Goargs) } } |
