From 4daaef027a21b0e193fca4d8dbdc4bba284ff731 Mon Sep 17 00:00:00 2001 From: Andrey Vagin Date: Tue, 15 May 2018 23:29:18 +0300 Subject: [PATCH] compel/log: increase a max line length There are a lot of lines, which are longer than 79: (04.331172)pie: 1: Error (criu/pie/restorer.c:460): seccomp: Unexpected tid -> (04.331172)pie: 1: 1 != 1 Signed-off-by: Andrei Vagin Acked-by: Cyrill Gorcunov Signed-off-by: Andrei Vagin --- compel/plugins/include/uapi/std/log.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compel/plugins/include/uapi/std/log.h b/compel/plugins/include/uapi/std/log.h index 3a3d88992..fbd1803bb 100644 --- a/compel/plugins/include/uapi/std/log.h +++ b/compel/plugins/include/uapi/std/log.h @@ -1,7 +1,7 @@ #ifndef COMPEL_PLUGIN_STD_LOG_H__ #define COMPEL_PLUGIN_STD_LOG_H__ -#define STD_LOG_SIMPLE_CHUNK 79 +#define STD_LOG_SIMPLE_CHUNK 256 extern void std_log_set_fd(int fd); extern void std_log_set_loglevel(unsigned int level);