Remove std::cout statement

This commit is contained in:
Jacob Perron 2018-12-01 23:01:33 -08:00
parent a8c5bf2747
commit 6037b8c3bb

View file

@ -66,7 +66,6 @@ namespace create {
if (isValidPacketID(id)) { if (isValidPacketID(id)) {
return packets[id]; return packets[id];
} }
std::cout << "Invalid packet " << (int) id << " requested" << std::endl;
return boost::shared_ptr<Packet>(); return boost::shared_ptr<Packet>();
} }