From bed85d2160500f57db63f4ab9d5533e0225cce15 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Mon, 23 Jan 2012 12:49:38 +0100 Subject: [PATCH] Log up to 1K of buffer content if decoding fails --- src/yaz-z-assoc.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/yaz-z-assoc.cpp b/src/yaz-z-assoc.cpp index 6048465..e268248 100644 --- a/src/yaz-z-assoc.cpp +++ b/src/yaz-z-assoc.cpp @@ -223,8 +223,8 @@ Z_GDU *Z_Assoc::decode_GDU(const char *buf, int len) if (len > 0) { WRBUF w = wrbuf_alloc(); - wrbuf_write_escaped(w, buf, len > 20 ? 20 : len); - yaz_log(YLOG_LOG, "Buffer content: %s", wrbuf_cstr(w)); + wrbuf_write_escaped(w, buf, len > 1024 ? 1024 : len); + yaz_log(YLOG_LOG, "Buffer bytes: %s", wrbuf_cstr(w)); wrbuf_destroy(w); } yaz_log(YLOG_LOG, "PDU dump:"); -- 1.7.10.4