/esp32log

Simple logging wrapper for the ESP32

Primary LanguageCMIT LicenseMIT

Simple logging wrapper for the ESP32

Dependencies

Features

  • Wrapper around the esp_log functionality

Example

#include "log.h"

const static char * TAG = "main";

// in your main content
void main(){
	log_initialize(LOG_DEBUG);

	// log message
	log(INFO, TAG, "Hello World!");
}