Skip to content

Commit 30ee991

Browse files
committed
Use TAG
1 parent 75c6956 commit 30ee991

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

firmware/main/main.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
#include "nvs.h"
1414
#include "micropython_main.h"
1515

16+
#define TAG "MAIN"
1617

1718
extern void micropython_entry(void);
1819

@@ -36,7 +37,7 @@ void nvs_write_zip_status(bool status)
3637
void app_main()
3738
{
3839
size_t mp_task_heap_size = mp_preallocate_heap();
39-
ESP_LOGI("MP", "Heap size: %d", mp_task_heap_size);
40+
ESP_LOGI(TAG, "Heap size: %d", mp_task_heap_size);
4041

4142
// logo();
4243
// bool is_first_boot = nvs_init();

0 commit comments

Comments
 (0)