IXWebSocket/ws/ixcore/utils/IXCoreLogger.cpp
Benjamin Sergeant 094b5834b7 warning police
2019-05-09 09:25:56 -07:00

15 lines
244 B
C++

#include "ixcore/utils/IXCoreLogger.h"
namespace ix
{
// Default do nothing logger
IXCoreLogger::LogFunc IXCoreLogger::_currentLogger = [](const char* /*msg*/){};
void IXCoreLogger::Log(const char* msg)
{
_currentLogger(msg);
}
} // ix