diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/rabbit.hrl | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/include/rabbit.hrl b/include/rabbit.hrl index 078f1c6e08..12b7a07b35 100644 --- a/include/rabbit.hrl +++ b/include/rabbit.hrl @@ -86,7 +86,7 @@ %%---------------------------------------------------------------------------- --define(COPYRIGHT_MESSAGE, "Copyright (C) 2007-2013 GoPivotal, Inc."). +-define(COPYRIGHT_MESSAGE, "Copyright (C) 2007-2014 GoPivotal, Inc."). -define(INFORMATION_MESSAGE, "Licensed under the MPL. See http://www.rabbitmq.com/"). -define(ERTS_MINIMUM, "5.6.3"). @@ -119,4 +119,12 @@ %% wrapping the message body). -define(MAX_MSG_SIZE, 2147383648). +%% 1) Maximum size of printable lists and binaries. +%% 2) Maximum size of any structural term. +%% 3) Amount to decrease 1) every time we descend while truncating. +%% 4) Amount to decrease 2) every time we descend while truncating. +%% +%% Whole thing feeds into truncate:log_event/2. +-define(LOG_TRUNC, {2000, 100, 100, 7}). + -define(store_proc_name(N), rabbit_misc:store_proc_name(?MODULE, N)). |
