regneq / projecteqemu

Automatically exported from code.google.com/p/projecteqemu
1 stars 0 forks source link

net.cpp in zone calls loading function twice #48

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1.  Load the zone server

What is the expected output? What do you see instead?
Only loading the function once.

What version of the product are you using? On what operating system?
Latest (SVN)

Please provide any additional information below.

around line 246:

        if(!load_log_settings(LOG_INI_FILE))
                _log(ZONE__INIT, "Warning: Unable to read %s", LOG_INI_FILE);
        else
                _log(ZONE__INIT, "Log settings loaded from %s", LOG_INI_FILE);

This is an old call, the updated version uses the XML file, but we load the log 
settings twice.

Original issue reported on code.google.com by image.em...@gmail.com on 4 Apr 2011 at 9:14