Core: More INFO -> DEBUG/WARN/ERROR mangling

(cherry picked from commit 15e56ed0b3)
This commit is contained in:
click
2015-03-08 05:54:50 +01:00
committed by Nayd
parent cc0c9add5a
commit 2bc44a2fb1

View File

@@ -382,9 +382,9 @@ void FlightPathMovementGenerator::PreloadEndGrid()
// Load the grid
if (endMap)
{
TC_LOG_INFO("misc", "Preloading rid (%f, %f) for map %u at node index %u/%u", _endGridX, _endGridY, _endMapId, _preloadTargetNode, (uint32)(i_path->size()-1));
TC_LOG_DEBUG("misc", "Preloading rid (%f, %f) for map %u at node index %u/%u", _endGridX, _endGridY, _endMapId, _preloadTargetNode, (uint32)(i_path->size()-1));
endMap->LoadGrid(_endGridX, _endGridY);
}
else
TC_LOG_INFO("misc", "Unable to determine map to preload flightmaster grid");
TC_LOG_DEBUG("misc", "Unable to determine map to preload flightmaster grid");
}