#include <stdio.h>
#include <inttypes.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "esp_log.h"
#define TAG "MAIN"
void app_main()
{
ESP_LOGI(TAG, "This is info level");
ESP_LOGW(TAG, "This is warning level");
ESP_LOGE(TAG, "This is error level");
} |