stop printing every event type

This commit is contained in:
ouwou 2022-07-31 17:53:55 -04:00
parent 3610a2508b
commit e8260c164f

View File

@ -1335,7 +1335,6 @@ void DiscordClient::HandleGatewayMessage(std::string str) {
HandleGatewayInvalidSession(m);
} break;
case GatewayOp::Dispatch: {
puts(m.Type.c_str());
auto iter = m_event_map.find(m.Type);
if (iter == m_event_map.end()) {
printf("Unknown event %s\n", m.Type.c_str());