mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-20 15:35:05 +00:00
17 lines
293 B
C++
17 lines
293 B
C++
#ifndef ESP_PLATFORM
|
|
|
|
#include <Tactility/Log.h>
|
|
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
|
|
void log_generic(const char* tag, const char* format, ...) {
|
|
va_list args;
|
|
va_start(args, format);
|
|
printf("%s ", tag);
|
|
vprintf(format, args);
|
|
printf("\n");
|
|
va_end(args);
|
|
}
|
|
|
|
#endif |