From: Adam Dickmeiss Date: Mon, 23 Jan 2012 11:49:38 +0000 (+0100) Subject: Log up to 1K of buffer content if decoding fails X-Git-Tag: v1.2.8~3 X-Git-Url: http://lists.indexdata.com/cgi-bin?a=commitdiff_plain;h=bed85d2160500f57db63f4ab9d5533e0225cce15;p=yazpp-moved-to-github.git Log up to 1K of buffer content if decoding fails --- 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:");