10 lines
211 B
C++
10 lines
211 B
C++
#pragma once
|
|
#include <Arduino.h>
|
|
|
|
namespace Log {
|
|
void event(const char *component, const char *message);
|
|
void printf(const char *component, const char *format, ...)
|
|
__attribute__((format(printf, 2, 3)));
|
|
}
|
|
|