16 lines
296 B
C
16 lines
296 B
C
#ifndef LOGGER_H
|
|
#define LOGGER_H
|
|
|
|
#include "esp_log.h"
|
|
|
|
// Wszystkie tagi logowania w jednym miejscu
|
|
extern const char *TAG_MAIN;
|
|
extern const char *TAG_DISP;
|
|
extern const char *TAG_ADXL;
|
|
extern const char *TAG_CONF;
|
|
|
|
// Funkcja inicjalizacji poziomów logowania
|
|
void init_log_levels();
|
|
|
|
#endif
|