mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-16 22:58:34 +00:00
Rename LoadLogSysSettings to LoadLogSettings
This commit is contained in:
@@ -364,7 +364,7 @@ void Database::GeneralQueryReceive(ServerPacket *pack) {
|
||||
safe_delete(queryBuffer);
|
||||
}
|
||||
|
||||
void Database::LoadLogSysSettings(EQEmuLogSys::LogSettings* log_settings){
|
||||
void Database::LoadLogSettings(EQEmuLogSys::LogSettings* log_settings){
|
||||
std::string query =
|
||||
"SELECT "
|
||||
"log_category_id, "
|
||||
|
||||
@@ -52,7 +52,7 @@ public:
|
||||
void LogMerchantTransaction(QSMerchantLogTransaction_Struct* QS, uint32 Items);
|
||||
void GeneralQueryReceive(ServerPacket *pack);
|
||||
|
||||
void LoadLogSysSettings(EQEmuLogSys::LogSettings* log_settings);
|
||||
void LoadLogSettings(EQEmuLogSys::LogSettings* log_settings);
|
||||
|
||||
protected:
|
||||
void HandleMysqlError(uint32 errnum);
|
||||
|
||||
@@ -88,7 +88,7 @@ int main() {
|
||||
}
|
||||
|
||||
/* Register Log System and Settings */
|
||||
database.LoadLogSysSettings(Log.log_settings);
|
||||
database.LoadLogSettings(Log.log_settings);
|
||||
Log.StartFileLogs();
|
||||
|
||||
if (signal(SIGINT, CatchSignal) == SIG_ERR) {
|
||||
|
||||
Reference in New Issue
Block a user