Removed some debug spam.

This commit is contained in:
Jocke
2016-01-18 11:35:35 +01:00
parent d995713d3b
commit 6ba6deb863
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -226,7 +226,7 @@ void Server::parseOnInputCommand(Packet& packet)
e.PlayerID = playerID; // Set correct player id
e.Value = packet.ReadPrimitive<float>();
m_EventBroker->Publish(e);
LOG_DEBUG("Server::parseOnInputCommand: Command is %s. Value is %f. PlayerID is %i.", e.Command.c_str(), e.Value, e.PlayerID);
LOG_INFO("Server::parseOnInputCommand: Command is %s. Value is %f. PlayerID is %i.", e.Command.c_str(), e.Value, e.PlayerID);
}
}
}
@@ -332,6 +332,6 @@ EntityID Server::createPlayer()
bool Server::OnInputCommand(const Events::InputCommand & e)
{
LOG_INFO("Server::OnInputCommand: Command is %s. Value is %f. PlayerID is %i.", e.Command.c_str(), e.Value, e.PlayerID);
//LOG_INFO("Server::OnInputCommand: Command is %s. Value is %f. PlayerID is %i.", e.Command.c_str(), e.Value, e.PlayerID);
return true;
}