Removed redundant newline

This commit is contained in:
Jordan Cristiano 2015-05-15 00:25:44 -04:00
parent cafe9ccb7c
commit ce51a094c2
1 changed files with 1 additions and 1 deletions

View File

@ -60,5 +60,5 @@ void ConLogWriter::WriteNetPacket(NetPacket& packet)
NetHandlers::NetMsg_ToString(packet.type, ss, packet.data);
ss << "\n";
fputs(ss.str().c_str(), m_outputFp);
std::clog << ss.str() << std::endl;
std::clog << ss.str();
}