update (core): Startup console capitalizations (#13195)

This commit is contained in:
M'Dic
2022-10-01 13:09:34 -04:00
committed by GitHub
parent c10a229f05
commit 967f8ce6d6
26 changed files with 266 additions and 257 deletions

View File

@@ -637,7 +637,7 @@ void LoadDBCStores(const std::string& dataPath)
exit(1);
}
LOG_INFO("server.loading", ">> Initialized {} data stores in {} ms", DBCFileCount, GetMSTimeDiffToNow(oldMSTime));
LOG_INFO("server.loading", ">> Initialized {} Data Stores in {} ms", DBCFileCount, GetMSTimeDiffToNow(oldMSTime));
LOG_INFO("server.loading", " ");
}

View File

@@ -250,7 +250,8 @@ void LoadM2Cameras(std::string const& dataPath)
LOG_ERROR("server.loading", "Camera file %s is damaged. Camera references position beyond file end", filename.string().c_str());
}
LOG_INFO("server.loading", ">> Loaded {} cinematic waypoint sets in {} ms", (uint32)sFlyByCameraStore.size(), GetMSTimeDiffToNow(oldMSTime));
LOG_INFO("server.loading", ">> Loaded {} Cinematic Waypoint Sets in {} ms", (uint32)sFlyByCameraStore.size(), GetMSTimeDiffToNow(oldMSTime));
LOG_INFO("server.loading", " ");
}
std::vector<FlyByCamera> const* GetFlyByCameras(uint32 cinematicCameraId)