From: Anthony Minessale II Date: Tue, 15 Jun 2004 18:48:07 +0000 (+0000) Subject: Added an extra reload_logger() after *.so is loaded in case a custom config handler... X-Git-Tag: 1.0.0-rc1~241 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=46303772e52a498e7a8438d70099b24318a111a1;p=thirdparty%2Fasterisk.git Added an extra reload_logger() after *.so is loaded in case a custom config handler binded to logger.conf to solve a chicken/egg issue where logger.conf is parsed before lodable modules are loaded. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3217 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/asterisk.c b/asterisk.c index 556f77605d..f5da120df5 100755 --- a/asterisk.c +++ b/asterisk.c @@ -1682,6 +1682,9 @@ int main(int argc, char *argv[]) printf(term_quit()); exit(1); } + /* reload logger in case a custom config handler binded to logger.conf*/ + reload_logger(0); + /* We might have the option of showing a console, but for now just do nothing... */ if (option_console && !option_verbose)