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