mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-11 07:38:36 +00:00
More log migrations to fmt / log aliases
This commit is contained in:
+7
-7
@@ -14,30 +14,30 @@ WaterMap* WaterMap::LoadWaterMapfile(std::string zone_name) {
|
||||
std::transform(zone_name.begin(), zone_name.end(), zone_name.begin(), ::tolower);
|
||||
|
||||
std::string file_path = Config->MapDir + "water/" + zone_name + std::string(".wtr");
|
||||
Log(Logs::General, Logs::Debug, "Attempting to load water map with path %s", file_path.c_str());
|
||||
LogDebug("Attempting to load water map with path [{}]", file_path.c_str());
|
||||
FILE *f = fopen(file_path.c_str(), "rb");
|
||||
if(f) {
|
||||
char magic[10];
|
||||
uint32 version;
|
||||
if(fread(magic, 10, 1, f) != 1) {
|
||||
Log(Logs::General, Logs::Debug, "Failed to load water map, error reading magic string in header.");
|
||||
LogDebug("Failed to load water map, error reading magic string in header");
|
||||
fclose(f);
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
if(strncmp(magic, "EQEMUWATER", 10)) {
|
||||
Log(Logs::General, Logs::Debug, "Failed to load water map, bad magic string in header.");
|
||||
LogDebug("Failed to load water map, bad magic string in header");
|
||||
fclose(f);
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
if(fread(&version, sizeof(version), 1, f) != 1) {
|
||||
Log(Logs::General, Logs::Debug, "Failed to load water map, error reading version.");
|
||||
LogDebug("Failed to load water map, error reading version");
|
||||
fclose(f);
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
Log(Logs::General, Logs::Debug, "Attempting to V%u load water map %s.", version, file_path.c_str());
|
||||
LogDebug("Attempting to V[{}] load water map [{}]", version, file_path.c_str());
|
||||
if(version == 1) {
|
||||
auto wm = new WaterMapV1();
|
||||
if(!wm->Load(f)) {
|
||||
@@ -61,12 +61,12 @@ WaterMap* WaterMap::LoadWaterMapfile(std::string zone_name) {
|
||||
fclose(f);
|
||||
return wm;
|
||||
} else {
|
||||
Log(Logs::General, Logs::Debug, "Failed to load water map, unsupported version V%u.", version);
|
||||
LogDebug("Failed to load water map, unsupported version V[{}]", version);
|
||||
fclose(f);
|
||||
return nullptr;
|
||||
}
|
||||
}
|
||||
|
||||
Log(Logs::General, Logs::Debug, "Failed to load water map, could not open file for reading %s.", file_path.c_str());
|
||||
LogDebug("Failed to load water map, could not open file for reading [{}]", file_path.c_str());
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user