summaryrefslogtreecommitdiff
path: root/argv.Print.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-27 18:39:18 -0500
committerJeff Carr <[email protected]>2025-10-27 18:39:18 -0500
commit4b096312a8ad49d0079242dc274c7c4a8a2cb31a (patch)
tree3621600ec15dc43ae552dbd45fe5d926c7cf2722 /argv.Print.go
parent8a0353dfd94e24d2b1a67a2b5c1cdac37c91ad35 (diff)
trying to fix helpv0.0.48
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")