From c4e75f5f1a2c5dcc001456f818615889e2f5e3df Mon Sep 17 00:00:00 2001 From: Jan Hutter Date: Thu, 17 Nov 2005 08:47:37 +0000 Subject: [PATCH] - added logging of chunk_t's --- Source/charon/parser.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/charon/parser.c b/Source/charon/parser.c index c30092302..316530e33 100644 --- a/Source/charon/parser.c +++ b/Source/charon/parser.c @@ -509,6 +509,7 @@ static status_t parse_chunk(private_parser_t *this, int rule_number, chunk_t *ou memcpy(output_pos->ptr, this->byte_pos, length); } this->byte_pos += length; + this->logger->log_bytes(this->logger, RAW, " =>", (void*)output_pos->ptr, length); return SUCCESS; }