[Logging] Force Info category to be always on in file/console logs (#3990)

This commit is contained in:
Chris Miles 2024-01-22 16:34:48 -06:00 committed by GitHub
parent dcd7bffa54
commit 3fb24dc0a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -701,6 +701,8 @@ EQEmuLogSys *EQEmuLogSys::LoadLogDatabaseSettings()
log_settings[Logs::Crash].log_to_console = static_cast<uint8>(Logs::General);
log_settings[Logs::Crash].log_to_gmsay = static_cast<uint8>(Logs::General);
log_settings[Logs::Crash].log_to_file = static_cast<uint8>(Logs::General);
log_settings[Logs::Info].log_to_file = static_cast<uint8>(Logs::General);
log_settings[Logs::Info].log_to_console = static_cast<uint8>(Logs::General);
return this;
}