From 917259bcd344c74a830633799fe62cc6cd0b70d1 Mon Sep 17 00:00:00 2001 From: Matt O'Gorman Date: Wed, 8 Feb 2006 22:12:34 +0000 Subject: [PATCH] Make logger report error,warning,notice if logger.conf not found, also updated chan_oss to give correct error message if its config file is not found. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@9232 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_oss.c | 3 +++ logger.c | 13 +++++++++++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/channels/chan_oss.c b/channels/chan_oss.c index 913c46c4eb..70b70333e8 100644 --- a/channels/chan_oss.c +++ b/channels/chan_oss.c @@ -1376,6 +1376,9 @@ int load_module(void) store_config(cfg, ctg); } while ( (ctg = ast_category_browse(cfg, ctg)) != NULL); ast_config_destroy(cfg); + } else { + ast_log(LOG_NOTICE, "Unable to load config oss.conf\n"); + return -1; } if (find_desc(oss_active) == NULL) { ast_log(LOG_NOTICE, "Device %s not found\n", oss_active); diff --git a/logger.c b/logger.c index 06fcf9a800..a6e07d6f84 100644 --- a/logger.c +++ b/logger.c @@ -309,9 +309,18 @@ static void init_logger_chain(void) cfg = ast_config_load("logger.conf"); - /* If no config file, we're fine */ - if (!cfg) + /* If no config file, we're fine, set default options. */ + if (!cfg) { + fprintf(stderr, "Unable to open logger.conf: %s\n", strerror(errno)); + chan = malloc(sizeof(struct logchannel)); + memset(chan, 0, sizeof(struct logchannel)); + chan->type = LOGTYPE_CONSOLE; + chan->logmask = 28; /*warning,notice,error */ + chan->next = logchannels; + logchannels = chan; + global_logmask |= chan->logmask; return; + } ast_mutex_lock(&loglock); if ((s = ast_variable_retrieve(cfg, "general", "appendhostname"))) {