Skip to content

Commit

Permalink
Reduce ACE_Log_Record::VERBOSE_LEN to 59.
Browse files Browse the repository at this point in the history
  • Loading branch information
likema committed Mar 8, 2019
1 parent 6fedf91 commit 095b109
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions ACE/ace/Log_Record.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 095b109

Please sign in to comment.