From e13314f6886acfeb48dd528e98287ebbcf74be80 Mon Sep 17 00:00:00 2001 From: Christian Thaeter Date: Sat, 30 Jan 2010 23:07:47 +0100 Subject: [PATCH] multiline continued log lines have a special event mark (!) now instead printing something like 0000000001: first 0000000001: continued it now prints 0000000001: first 0000000001! continued --- src/nobug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nobug.c b/src/nobug.c index 2666c93..8618931 100644 --- a/src/nobug.c +++ b/src/nobug.c @@ -202,7 +202,7 @@ nobug_log_va_ (char* start, char* header, struct nobug_flag* flag, int lvl, cons if (nobug_ringbuffer_extend (flag->ringbuffer_target, newlen, 0)) { - /*header[10] = '!'; */ + header[10] = '!'; size_t headerlen = strlen(header); -- 2.11.4.GIT