IXWebSocket/ws/ixcore/utils/IXCoreLogger.cpp

15 lines
240 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