summaryrefslogtreecommitdiff
path: root/supervisor
diff options
context:
space:
mode:
authorScott Shawcroft <scott@tannewt.org>2020-08-18 14:02:59 -0700
committerScott Shawcroft <scott@tannewt.org>2020-08-19 14:23:28 -0700
commit9602ee6265ff20f6e075753bbb105578f680d519 (patch)
treefb311eca03ab924b2c686bf51b1c584b849ec475 /supervisor
parentdcc42f6281ad928c6218acaab8e72bdf52038851 (diff)
Disable wifi debug logging and memory log
Diffstat (limited to 'supervisor')
-rwxr-xr-xsupervisor/shared/memory.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/supervisor/shared/memory.c b/supervisor/shared/memory.c
index 79bdeef9d..8ae8a1699 100755
--- a/supervisor/shared/memory.c
+++ b/supervisor/shared/memory.c
@@ -31,9 +31,6 @@
#include "supervisor/shared/display.h"
-#include "esp_log.h"
-static const char *TAG = "memory";
-
#define CIRCUITPY_SUPERVISOR_ALLOC_COUNT (12)
static supervisor_allocation allocations[CIRCUITPY_SUPERVISOR_ALLOC_COUNT];
@@ -42,7 +39,6 @@ uint32_t* low_address;
uint32_t* high_address;
void memory_init(void) {
- ESP_LOGE(TAG, "memory init");
low_address = port_heap_get_bottom();
high_address = port_heap_get_top();
}