hunting/utils/Logold/src/LogImpl.cpp
2023-09-08 08:04:15 -07:00

9 lines
137 B
C++

#include "LogImpl.h"
bool LogImpl::IsWorking()
{
return true;
}
int LogImpl::Log(const char *buff)
{
return printf("%s", buff);
}