mirror of
https://gitee.com/jiuyilian/embedded-framework.git
synced 2025-01-06 10:16:51 -05:00
9 lines
137 B
C++
9 lines
137 B
C++
#include "LogImpl.h"
|
|
bool LogImpl::IsWorking()
|
|
{
|
|
return true;
|
|
}
|
|
int LogImpl::Log(const char *buff)
|
|
{
|
|
return printf("%s", buff);
|
|
} |