summaryrefslogtreecommitdiff
path: root/argv.Print.go
diff options
context:
space:
mode:
Diffstat (limited to 'argv.Print.go')
-rw-r--r--argv.Print.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/argv.Print.go b/argv.Print.go
index 2d7ea80..7c89404 100644
--- a/argv.Print.go
+++ b/argv.Print.go
@@ -20,7 +20,7 @@ func Debugf(fmts string, parts ...any) {
fmts = strings.TrimSpace(fmts)
fmts += "\n"
// me.pb.Stderr += fmt.Sprintf(fmts, parts...)
- fmt.Fprintf(Stderr, fmts, parts...)
+ fmt.Fprintf(Stddbg, fmts, parts...)
}
// print out auto complete debugging info
@@ -77,10 +77,10 @@ func PrintStderr() {
}
fmt.Fprintf(os.Stderr, "\n")
for _, line := range lines {
- line = strings.TrimSpace(line)
- if line == "" {
- continue
- }
+ // line = strings.TrimSpace(line)
+ // if line == "" {
+ // continue
+ // }
fmt.Fprintf(os.Stderr, "%s\n", line)
}
fmt.Fprintf(os.Stderr, "\n")