fix(Core/Log): GMLogFile -> GmLogFile (#5130)
This commit is contained in:
parent
c2b8d78f3e
commit
ee1918a3e9
1 changed files with 2 additions and 2 deletions
|
|
@ -115,11 +115,11 @@ void Log::Initialize()
|
|||
|
||||
m_gmlog_per_account = sConfigMgr->GetOption<bool>("GmLogPerAccount", false, false);
|
||||
if (!m_gmlog_per_account)
|
||||
gmLogfile = openLogFile("GMLogFile", "GmLogTimestamp", "a");
|
||||
gmLogfile = openLogFile("GmLogFile", "GmLogTimestamp", "a");
|
||||
else
|
||||
{
|
||||
// GM log settings for per account case
|
||||
m_gmlog_filename_format = sConfigMgr->GetOption<std::string>("GMLogFile", "", false);
|
||||
m_gmlog_filename_format = sConfigMgr->GetOption<std::string>("GmLogFile", "", false);
|
||||
if (!m_gmlog_filename_format.empty())
|
||||
{
|
||||
bool m_gmlog_timestamp = sConfigMgr->GetOption<bool>("GmLogTimestamp", false, false);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue