reduce spam on release mode

This commit is contained in:
DarthArgus
2016-05-15 21:20:51 +00:00
parent 321a19c315
commit b724093bcb
2 changed files with 2 additions and 2 deletions
@@ -93,7 +93,7 @@ void PlanetProxyObject::update(int x, int y, int z, NetworkId containedBy, uint3
static unsigned long authTransferSanityCheckTimeMs = ConfigPlanetServer::getAuthTransferSanityCheckTimeMs();
if (Clock::timeMs()-m_authTransferTimeMs > authTransferSanityCheckTimeMs)
{
WARNING(true, ("Resending auth transfer for %s to %lu due to receiving a stale position update.", m_objectId.getValueString().c_str(), authoritativeServer));
DEBUG_WARNING(true, ("Resending auth transfer for %s to %lu due to receiving a stale position update.", m_objectId.getValueString().c_str(), authoritativeServer));
sendAuthorityChange(authoritativeServer, m_authoritativeServer, false);
return;
}
@@ -223,7 +223,7 @@ void AICreatureController::handleMessage (int message, float value, const Messag
{
if (owner->isAuthoritative())
{
WARNING(true, ("AICreatureController::handleMessage() owner(%s) Received CM_aiSetMovement(%d) for an authoritative object. Only proxied objects should receive this controller message.", getDebugInformation().c_str(), static_cast<int>(msg->getMovementType())));
DEBUG_WARNING(true, ("AICreatureController::handleMessage() owner(%s) Received CM_aiSetMovement(%d) for an authoritative object. Only proxied objects should receive this controller message.", getDebugInformation().c_str(), static_cast<int>(msg->getMovementType())));
}
else
{