Tested initial implementation: basic UAC, client registration, authentication, etc

git-svn-id: https://svn.pjsip.org/repos/pjproject/trunk@141 74dad513-b988-da41-8d7b-12977e46ad98
diff --git a/pjlib/include/pj/config.h b/pjlib/include/pj/config.h
index 205df1d..b836b53 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 1cdf857..2c706f9 100644
--- a/pjlib/include/pj/log.h
+++ b/pjlib/include/pj/log.h
@@ -112,6 +112,7 @@
 
 /**
  * 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.
  *