summaryrefslogtreecommitdiff
path: root/pjlib/include/pj/log.h
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2009-07-21 12:20:17 +0000
committerBenny Prijono <bennylp@teluu.com>2009-07-21 12:20:17 +0000
commitf88b32e7c12313215b541fc6f1b24ae81da62632 (patch)
tree88b14cc4c0060d675c3274338db1306e03e019b9 /pjlib/include/pj/log.h
parentb7d6ba9e3f1343cc42ecee41c28257171d350ebe (diff)
Ticket #921: New logging option/flag to include caller thread ID
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@2842 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjlib/include/pj/log.h')
-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 3f001e16..4b2083c2 100644
--- a/pjlib/include/pj/log.h
+++ b/pjlib/include/pj/log.h
@@ -80,7 +80,8 @@ enum pj_log_decoration
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_LEVEL_TEXT = 2048 /**< Include level text string [no] */
+ PJ_LOG_HAS_LEVEL_TEXT = 2048, /**< Include level text string [no] */
+ PJ_LOG_HAS_THREAD_ID = 4096 /**< Include thread identification [no] */
};
/**