summaryrefslogtreecommitdiff
path: root/pjlib/include/pj
diff options
context:
space:
mode:
Diffstat (limited to 'pjlib/include/pj')
-rw-r--r--pjlib/include/pj/config.h4
-rw-r--r--pjlib/include/pj/log.h1
2 files changed, 3 insertions, 2 deletions
diff --git a/pjlib/include/pj/config.h b/pjlib/include/pj/config.h
index 205df1da..b836b53b 100644
--- a/pjlib/include/pj/config.h
+++ b/pjlib/include/pj/config.h
@@ -175,10 +175,10 @@
* This may affect the stack usage, depending whether PJ_LOG_USE_STACK_BUFFER
* flag is set.
*
- * Default: 800
+ * Default: 1500
*/
#ifndef PJ_LOG_MAX_SIZE
-# define PJ_LOG_MAX_SIZE 800
+# define PJ_LOG_MAX_SIZE 1500
#endif
/**
diff --git a/pjlib/include/pj/log.h b/pjlib/include/pj/log.h
index 1cdf8577..2c706f9c 100644
--- a/pjlib/include/pj/log.h
+++ b/pjlib/include/pj/log.h
@@ -112,6 +112,7 @@ typedef void pj_log_func(int level, const char *data, int len);
/**
* Default logging writer function used by front end logger function.
+ * This function will print the log message to stdout only.
* Application normally should NOT need to call this function, but
* rather use the PJ_LOG macro.
*