From 095b109606c885d94a186af1a727c3d57f29f329 Mon Sep 17 00:00:00 2001 From: Like Ma Date: Thu, 28 Feb 2019 20:04:06 +0800 Subject: [PATCH] Reduce ACE_Log_Record::VERBOSE_LEN to 59. --- ACE/ace/Log_Record.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ACE/ace/Log_Record.h b/ACE/ace/Log_Record.h index f664147b92886..2507d43c51c52 100644 --- a/ACE/ace/Log_Record.h +++ b/ACE/ace/Log_Record.h @@ -45,9 +45,8 @@ class ACE_Export ACE_Log_Record ALIGN_WORDB = 8, /// Size used by verbose mode. - /// 20 (date) + 15 (host_name) + 10 (pid) + 10 (type) - /// + 4 (@) ... + ? (progname) - VERBOSE_LEN = 128, + /// 20 (date) + 15 (host_name) + 10 (pid) + 10 (type) + 4 (@) + VERBOSE_LEN = 59, /// Maximum size of a logging message with the verbose headers MAXVERBOSELOGMSGLEN = VERBOSE_LEN + MAXLOGMSGLEN