From 1912a7c3980713ccc81e9fd2895873e29dc519a2 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Thu, 28 Apr 2011 22:02:46 +0200 Subject: Logger: output "END:" line to delimit appended reports. closes bz#698458 Also changes Bugzilla and abrt-cli output format. Signed-off-by: Denys Vlasenko --- src/include/abrt_problem_data.h | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'src/include/abrt_problem_data.h') diff --git a/src/include/abrt_problem_data.h b/src/include/abrt_problem_data.h index 3ab6679c..dc003944 100644 --- a/src/include/abrt_problem_data.h +++ b/src/include/abrt_problem_data.h @@ -23,7 +23,8 @@ #include "abrt_types.h" // Text bigger than this usually is attached, not added inline -#define CD_TEXT_ATT_SIZE (2*1024) +// was 2k, now bumbed up to 20k: +#define CD_TEXT_ATT_SIZE (20*1024) // Filenames in dump directory: // filled by a hook: @@ -69,11 +70,13 @@ */ #define FILENAME_REPORTED_TO "reported_to" #define FILENAME_EVENT_LOG "event_log" + // Not stored as files, added "on the fly": -#define CD_DUMPDIR "DumpDir" -// "Which events are possible (make sense) on this dump dir?" -// (a string with "\n" terminated event names) -#define CD_EVENTS "Events" +#define CD_DUMPDIR "Directory" +//UNUSED: +//// "Which events are possible (make sense) on this dump dir?" +//// (a string with "\n" terminated event names) +//#define CD_EVENTS "Events" /* FILENAME_EVENT_LOG is trimmed to below LOW_WATERMARK * when it reaches HIGH_WATERMARK size -- cgit