summaryrefslogtreecommitdiff
path: root/include/asterisk/logger.h
diff options
context:
space:
mode:
authorGeorge Joseph <gjoseph@digium.com>2017-09-27 12:45:21 -0600
committerGeorge Joseph <gjoseph@digium.com>2017-09-28 12:18:58 -0500
commitd1de7948fe92ed39f441df645f236db8ef64d7de (patch)
tree9f1d638d21bf33fa088ec91207e682fd79f7022a /include/asterisk/logger.h
parent7c5e55f15d9280b92088df2e2e2bcc077b3a446d (diff)
logger: Bring back ability to turn debug on by source file
Somewhere along the way we lost the ability to debug individual source files. For modules, this wasn't a big deal but all the source files in ./main are in the one "core" module so debugging individual core capabilities was almost impossible. * Added a test to DEBUG_ATLEAST that also checks __FILE__ instead of just module name. Any source file will work even if it's in a module subdirectory. Change-Id: Icc0af41837f3b1679dec7af21fa32cd1f7469f6e
Diffstat (limited to 'include/asterisk/logger.h')
-rw-r--r--include/asterisk/logger.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/asterisk/logger.h b/include/asterisk/logger.h
index 849f986b3..8b1e5fe01 100644
--- a/include/asterisk/logger.h
+++ b/include/asterisk/logger.h
@@ -429,7 +429,9 @@ void ast_callid_strnprint(char *buffer, size_t buffer_size, ast_callid callid);
#define DEBUG_ATLEAST(level) \
(option_debug >= (level) \
- || (ast_opt_dbg_module && (int)ast_debug_get_by_module(AST_MODULE) >= (level)))
+ || (ast_opt_dbg_module \
+ && ((int)ast_debug_get_by_module(AST_MODULE) >= (level) \
+ || (int)ast_debug_get_by_module(__FILE__) >= (level))))
/*!
* \brief Log a DEBUG message