log messages

This commit is contained in:
otavepto 2024-03-25 23:37:27 +02:00 committed by otavepto
parent dfbd928311
commit af77ce4f5a
2 changed files with 2 additions and 2 deletions

View File

@ -682,7 +682,7 @@ STEAMAPI_API ISteamClient *SteamGameServerClient();
STEAMAPI_API steam_bool S_CALLTYPE SteamInternal_GameServer_Init( uint32 unIP, uint16 usPort, uint16 usGamePort, uint16 usQueryPort, EServerMode eServerMode, const char *pchVersionString )
{
PRINT_DEBUG("SteamInternal_GameServer_Init %u %hu %hu %hu %u %s\n", unIP, usPort, usGamePort, usQueryPort, eServerMode, pchVersionString);
PRINT_DEBUG("SteamInternal_GameServer_Init %X %hu %hu %hu %u %s\n", unIP, usPort, usGamePort, usQueryPort, eServerMode, pchVersionString);
if (!server_steam_pipe) {
load_old_interface_versions();
get_steam_client()->CreateLocalUser(&server_steam_pipe, k_EAccountTypeGameServer);

View File

@ -139,7 +139,7 @@ void ClearAllKeyValues()
// Call this to add/update a key/value pair.
void SetKeyValue( const char *pKey, const char *pValue )
{
PRINT_DEBUG("Steam_Masterserver_Updater::SetKeyValue\n");
PRINT_DEBUG("Steam_Masterserver_Updater::SetKeyValue '%s'='%s'\n", pKey, pValue);
}