controller-legacy/logger.c

11 lines
223 B
C
Raw Normal View History

2020-04-13 22:50:55 +00:00
#include <logger.h>
char*
logger_get_timestamp()
{
time_t rawtime;
time(&rawtime);
strftime(_LOGGER_TIMESTAMP, _LOGGER_TIMESTAMP_SIZE, "%Y-%m-%d %H:%M:%S", localtime(&rawtime));
return _LOGGER_TIMESTAMP;
}