Core/Logging: Switch from fmt::sprintf to fmt::format (c++20 standard compatible api)

This commit is contained in:
Shauren
2023-01-08 21:16:53 +01:00
parent b6820a706f
commit d791afae1d
294 changed files with 4921 additions and 4944 deletions

View File

@@ -484,11 +484,11 @@ public:
}
else
{
TC_LOG_ERROR("misc", "Sending opcode that has unknown type '%s'", type.c_str());
TC_LOG_ERROR("misc", "Sending opcode that has unknown type '{}'", type);
break;
}
}
TC_LOG_DEBUG("network", "Sending opcode %u", data.GetOpcode());
TC_LOG_DEBUG("network", "Sending opcode {}", data.GetOpcode());
data.hexlike();
player->GetSession()->SendPacket(&data, true);
handler->PSendSysMessage(LANG_COMMAND_OPCODESENT, data.GetOpcode(), unit->GetName().c_str());
@@ -1205,7 +1205,7 @@ public:
{
Player* player = handler->GetPlayer();
TC_LOG_INFO("sql.dev", "(@PATH, XX, %.3f, %.3f, %.5f, %.5f, 0, 0, 0, 100, 0),", player->GetPositionX(), player->GetPositionY(), player->GetPositionZ(), player->GetOrientation());
TC_LOG_INFO("sql.dev", "(@PATH, XX, {:.3f}, {:.3f}, {:.5f}, {:.5f}, 0, 0, 0, 100, 0),", player->GetPositionX(), player->GetPositionY(), player->GetPositionZ(), player->GetOrientation());
handler->PSendSysMessage("Waypoint SQL written to SQL Developer log");
return true;