mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 01:37:00 +00:00
[9968] Allow have reserved entries with empty names in log filters table.
This commit is contained in:
parent
628531933d
commit
e3955bbc59
3 changed files with 7 additions and 3 deletions
|
|
@ -268,7 +268,7 @@ void Log::Initialize()
|
|||
|
||||
m_logFilter = 0;
|
||||
for(int i = 0; i < LOG_FILTER_COUNT; ++i)
|
||||
if (logFilterData[i].name)
|
||||
if (*logFilterData[i].name)
|
||||
if (sConfig.GetBoolDefault(logFilterData[i].configName, logFilterData[i].defaultState))
|
||||
m_logFilter |= (1 << i);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue