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:
parent
c43e1b8c0c
commit
c43f62f6a9
1 changed files with 2 additions and 1 deletions
|
|
@ -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.*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue