__FUNCTION__ usage in RTech commands.

This commit is contained in:
PixieCore 2022-06-13 20:42:14 +02:00
parent 27eae42b10
commit 133c40940f

View File

@ -164,7 +164,7 @@ void Host_KickID_f(const CCommand& args)
}
catch (std::exception& e)
{
Error(eDLL_T::SERVER, "sv_kickid requires a UserID or OriginID. You can get the UserID with the 'status' command. Error: %s", e.what());
Error(eDLL_T::SERVER, "%s - sv_kickid requires a UserID or OriginID. You can get the UserID with the 'status' command. Error: %s", __FUNCTION__, e.what());
return;
}
}
@ -277,7 +277,7 @@ void Host_BanID_f(const CCommand& args)
}
catch (std::exception& e)
{
Error(eDLL_T::SERVER, "Banid Error: %s", e.what());
Error(eDLL_T::SERVER, "%s - Banid Error: %s", __FUNCTION__, e.what());
return;
}
}
@ -309,7 +309,7 @@ void Host_Unban_f(const CCommand& args)
}
catch (std::exception& e)
{
Error(eDLL_T::SERVER, "Unban error: %s", e.what());
Error(eDLL_T::SERVER, "%s - Unban error: %s", __FUNCTION__, e.what());
return;
}
}
@ -514,7 +514,7 @@ void RTech_Decompress_f(const CCommand& args)
if (!FileExists(pakNameIn))
{
Error(eDLL_T::RTECH, "Error: pak file '%s' does not exist!\n", pakNameIn.c_str());
Error(eDLL_T::RTECH, "%s - pak file '%s' does not exist!\n", __FUNCTION__, pakNameIn.c_str());
return;
}
@ -544,17 +544,17 @@ void RTech_Decompress_f(const CCommand& args)
if (rheader->m_nMagic != 'kaPR')
{
Error(eDLL_T::RTECH, "Error: pak file '%s' has invalid magic!\n", pakNameIn.c_str());
Error(eDLL_T::RTECH, "%s - pak file '%s' has invalid magic!\n", __FUNCTION__, pakNameIn.c_str());
return;
}
if ((rheader->m_nFlags[1] & 1) != 1)
{
Error(eDLL_T::RTECH, "Error: pak file '%s' already decompressed!\n", pakNameIn.c_str());
Error(eDLL_T::RTECH, "%s - pak file '%s' already decompressed!\n", __FUNCTION__, pakNameIn.c_str());
return;
}
if (rheader->m_nSizeDisk != upak.size())
{
Error(eDLL_T::RTECH, "Error: pak file '%s' decompressed size '%zu' doesn't match expected value '%zu'!\n", pakNameIn.c_str(), upak.size(), rheader->m_nSizeMemory);
Error(eDLL_T::RTECH, "%s - pak file '%s' decompressed size '%zu' doesn't match expected value '%zu'!\n", __FUNCTION__, pakNameIn.c_str(), upak.size(), rheader->m_nSizeMemory);
return;
}
@ -563,7 +563,7 @@ void RTech_Decompress_f(const CCommand& args)
if (decompSize == rheader->m_nSizeDisk)
{
Error(eDLL_T::RTECH, "Error: calculated size: '%zu' expected: '%zu'!\n", decompSize, rheader->m_nSizeMemory);
Error(eDLL_T::RTECH, "%s - calculated size: '%zu' expected: '%zu'!\n", __FUNCTION__, decompSize, rheader->m_nSizeMemory);
return;
}
else
@ -579,7 +579,7 @@ void RTech_Decompress_f(const CCommand& args)
uint8_t decompResult = g_pRTech->DecompressPakFile(&state, upak.size(), pakBuf.size());
if (decompResult != 1)
{
Error(eDLL_T::RTECH, "Error: decompression failed for '%s' return value: '%u'!\n", pakNameIn.c_str(), +decompResult);
Error(eDLL_T::RTECH, "%s - decompression failed for '%s' return value: '%u'!\n", __FUNCTION__, pakNameIn.c_str(), +decompResult);
return;
}
@ -910,7 +910,7 @@ void Mat_CrossHair_f(const CCommand& args)
}
else
{
DevMsg(eDLL_T::MS, "No Material found >:(\n");
DevMsg(eDLL_T::MS, "%s - No Material found >:(\n", __FUNCTION__);
}
}
#endif // !DEDICATED