summaryrefslogtreecommitdiff
path: root/include/asterisk/logger.h
diff options
context:
space:
mode:
authorJonathan Rose <jrose@digium.com>2011-06-06 19:15:10 +0000
committerJonathan Rose <jrose@digium.com>2011-06-06 19:15:10 +0000
commit4ab3825fe4703d2e747c45befa92240b6424b2db (patch)
treeff194970867860a6d9745cf3804b33dea3dc2c27 /include/asterisk/logger.h
parentc8548bad22d2f9644c9d03b6a6121e59d7afe131 (diff)
Merged revisions 322069 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r322069 | jrose | 2011-06-06 14:07:56 -0500 (Mon, 06 Jun 2011) | 8 lines Fixes level toggling for logger set levels since it was reversed (closes issue ASTERISK-17850) Reported by: Luke H Tested by: jrose, Luke H Review: https://reviewboard.asterisk.org/r/1244/ ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@322070 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk/logger.h')
-rw-r--r--include/asterisk/logger.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/asterisk/logger.h b/include/asterisk/logger.h
index 91824d704..322214e73 100644
--- a/include/asterisk/logger.h
+++ b/include/asterisk/logger.h
@@ -98,7 +98,10 @@ void ast_console_puts_mutable(const char *string, int level);
void ast_console_toggle_mute(int fd, int silent);
/*!
- * \since 1.6.1
+ * \brief enables or disables logging of a specified level to the console
+ * fd specifies the index of the console receiving the level change
+ * level specifies the index of the logging level being toggled
+ * state indicates whether logging will be on or off (0 for off, 1 for on)
*/
void ast_console_toggle_loglevel(int fd, int level, int state);