Forgot implementation to previous fix.

This commit is contained in:
sledgehammer999 2017-09-11 03:42:59 +03:00
parent d955e40531
commit cc85806316
No known key found for this signature in database
GPG key ID: 6E4A2D025B7CC9A2

View file

@ -90,3 +90,8 @@ QVector<Log::Peer> Logger::getPeers(int lastKnownId) const
return m_peers.mid(size - diff);
}
void LogMsg(const QString &message, const Log::MsgType &type)
{
Logger::instance()->addMessage(message, type);
}