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
This commit is contained in:
Anthony Minessale II
2004-06-15 18:48:07 +00:00
parent d0e532a070
commit 46303772e5

View File

@@ -1682,6 +1682,9 @@ int main(int argc, char *argv[])
printf(term_quit()); printf(term_quit());
exit(1); 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 /* We might have the option of showing a console, but for now just
do nothing... */ do nothing... */
if (option_console && !option_verbose) if (option_console && !option_verbose)