IXWebSocket/ws/ixcore/utils/IXCoreLogger.cpp

15 lines
244 B
C++
Raw Normal View History

#include "ixcore/utils/IXCoreLogger.h"
namespace ix
{
// Default do nothing logger
2019-05-09 18:25:56 +02:00
IXCoreLogger::LogFunc IXCoreLogger::_currentLogger = [](const char* /*msg*/){};
void IXCoreLogger::Log(const char* msg)
{
_currentLogger(msg);
}
} // ix