aboutsummaryrefslogtreecommitdiffstats
path: root/main/logger.c
diff options
context:
space:
mode:
authorrizzo <rizzo@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-18 15:36:31 +0000
committerrizzo <rizzo@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-18 15:36:31 +0000
commit0c344600b1ce8b1eefd339707fc53502392a4774 (patch)
tree9ac653cb33462d99b2c8557ac5994494ea0e51fd /main/logger.c
parent02448f47ebbb8ab95d05ae293d63ebcda5966652 (diff)
debugging shows that we always need more than 128 bytes
for the verbose and logging messages so start with a larger buffer from the beginning. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@48558 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/logger.c')
-rw-r--r--main/logger.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/logger.c b/main/logger.c
index 440c7dea2..cf9ce4d97 100644
--- a/main/logger.c
+++ b/main/logger.c
@@ -138,10 +138,10 @@ static int colors[] = {
};
AST_THREADSTORAGE(verbose_buf);
-#define VERBOSE_BUF_INIT_SIZE 128
+#define VERBOSE_BUF_INIT_SIZE 256
AST_THREADSTORAGE(log_buf);
-#define LOG_BUF_INIT_SIZE 128
+#define LOG_BUF_INIT_SIZE 256
static int make_components(char *s, int lineno)
{