15 lines
244 B
C++
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
|