aboutsummaryrefslogtreecommitdiffstats
path: root/main/logger.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2009-04-10 15:11:16 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2009-04-10 15:11:16 +0000
commitd011662b1705740a6f2bccdce3e47d626283240a (patch)
tree09d8270b15e2786a1d6abec49594a2376c60075d /main/logger.c
parent80028d9c5e10a144a3cee97be7568f87f6f19f68 (diff)
revert addition of LOG_SECURITY log channel; after further discussion, a much better solution will be used
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@187636 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/logger.c')
-rw-r--r--main/logger.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/main/logger.c b/main/logger.c
index 79fb730d3..163548908 100644
--- a/main/logger.c
+++ b/main/logger.c
@@ -162,8 +162,7 @@ static char *levels[] = {
"WARNING",
"ERROR",
"VERBOSE",
- "DTMF",
- "SECURITY",
+ "DTMF"
};
/*! \brief Colors used in the console for logging */
@@ -205,8 +204,6 @@ static int make_components(const char *s, int lineno)
res |= (1 << __LOG_VERBOSE);
else if (!strcasecmp(w, "dtmf"))
res |= (1 << __LOG_DTMF);
- else if (!strcasecmp(w, "security"))
- res |= (1 << __LOG_SECURITY);
else {
fprintf(stderr, "Logfile Warning: Unknown keyword '%s' at line %d of logger.conf\n", w, lineno);
}
@@ -359,7 +356,7 @@ static void init_logger_chain(int locked)
if (!(chan = ast_calloc(1, sizeof(*chan))))
return;
chan->type = LOGTYPE_CONSOLE;
- chan->logmask = (1 << __LOG_WARNING) | (1 << __LOG_NOTICE) | (1 << __LOG_ERROR);
+ chan->logmask = 28; /*warning,notice,error */
if (!locked)
AST_RWLIST_WRLOCK(&logchannels);
AST_RWLIST_INSERT_HEAD(&logchannels, chan, list);
@@ -805,8 +802,6 @@ static char *handle_logger_show_channels(struct ast_cli_entry *e, int cmd, struc
ast_cli(a->fd, "Debug ");
if (chan->logmask & (1 << __LOG_DTMF))
ast_cli(a->fd, "DTMF ");
- if (chan->logmask & (1 << __LOG_SECURITY))
- ast_cli(a->fd, "Security ");
if (chan->logmask & (1 << __LOG_VERBOSE))
ast_cli(a->fd, "Verbose ");
if (chan->logmask & (1 << __LOG_WARNING))