summaryrefslogtreecommitdiff
path: root/pjlib/include
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2008-07-28 21:15:04 +0000
committerBenny Prijono <bennylp@teluu.com>2008-07-28 21:15:04 +0000
commitacdf2f35a1555531f855e01801ce420416a87725 (patch)
tree6dd0a36debfeaa27af37f3be3666a9562918a534 /pjlib/include
parent70cf4f63468cc2661d4e72154936fe190bb92b26 (diff)
Added PJ_LOG_HAS_LEVEL_TEXT logging flag to display the log verbosity level (thanks Ondrej Sterbak for the patch)
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@2181 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjlib/include')
-rw-r--r--pjlib/include/pj/log.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/pjlib/include/pj/log.h b/pjlib/include/pj/log.h
index 2d0961c9..89a0a660 100644
--- a/pjlib/include/pj/log.h
+++ b/pjlib/include/pj/log.h
@@ -78,7 +78,8 @@ enum pj_log_decoration
PJ_LOG_HAS_NEWLINE = 128, /**< Terminate each call with newline [yes] */
PJ_LOG_HAS_CR = 256, /**< Include carriage return [no] */
PJ_LOG_HAS_SPACE = 512, /**< Include two spaces before log [yes] */
- PJ_LOG_HAS_COLOR = 1024 /**< Colorize logs [yes on win32] */
+ PJ_LOG_HAS_COLOR = 1024, /**< Colorize logs [yes on win32] */
+ PJ_LOG_HAS_LEVEL_TEXT = 2048 /**< Include level text string [no] */
};
/**