mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-23 05:36:23 +00:00
fix(Core/Conf): log error in case configuration not found for DBImport (#17066)
* fix: log error in case configuration not found * fix: register dbimport configuration file
This commit is contained in:
@@ -39,8 +39,9 @@ namespace
|
||||
{
|
||||
size_t foundAuth = fileName.find("authserver.conf");
|
||||
size_t foundWorld = fileName.find("worldserver.conf");
|
||||
size_t foundImport = fileName.find("dbimport.conf");
|
||||
|
||||
return foundAuth != std::string_view::npos || foundWorld != std::string_view::npos;
|
||||
return foundAuth != std::string_view::npos || foundWorld != std::string_view::npos || foundImport != std::string_view::npos;
|
||||
}
|
||||
|
||||
// Check logging system configs like Appender.* and Logger.*
|
||||
|
||||
Reference in New Issue
Block a user