Fix log calls that either didn't carry over or were using newer aliases that weren't converted to FMT prior to migration

This commit is contained in:
Akkadius
2019-09-17 00:18:07 -05:00
parent 9a7ecb4e8d
commit 96ef76847b
16 changed files with 36 additions and 37 deletions
+2 -2
View File
@@ -4176,10 +4176,10 @@ bool ZoneDatabase::LoadFactionData()
faction_array[index]->mods[mr_row[2]] = atoi(mr_row[1]);
}
Log(Logs::General, Logs::Status, "%u Faction Modifier%s loaded...", modifier_results.RowCount(), (modifier_results.RowCount() == 1 ? "" : "s"));
LogInfo("[{}] Faction Modifier(s) loaded", modifier_results.RowCount());
}
else {
Log(Logs::General, Logs::Status, "Unable to load Faction Modifier data...");
LogError("Unable to load Faction Modifier data");
}
return true;