summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--unxml.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/unxml.go b/unxml.go
index 6478995..473fe9e 100644
--- a/unxml.go
+++ b/unxml.go
@@ -171,7 +171,7 @@ func (r *ElementReader) Read(out []byte) (int, error) {
r.xr.count += n
lenout -= n
} else {
- //fmt.Printf("HAD NO SPACE: count: %d, lenout: %d\n", r.xr.count, lenout)
+ //fmt.Printf("HAD NO SPACE: wrote: %q, count: %d, lenout: %d\n", text[:lenout], r.xr.count, lenout)
n = copy(out[r.xr.count:], text[:lenout])
r.xr.count += n
r.xr.lastread = text[lenout:]