We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1a325f commit bc5f095Copy full SHA for bc5f095
components/oap-common/oap_debug.c
@@ -61,13 +61,9 @@ void log_heap_size(const char* msg) {
61
size_t free_heap = xPortGetFreeHeapSize();
62
if (heap_samples[sample_idx%SAMPLES] == 0) heap_samples[sample_idx%SAMPLES] = free_heap;
63
64
-
65
66
- ESP_LOGD(TAG, "heap min %d avg %d free %d change %d (%s)",
+ ESP_LOGD(TAG, "heap min %d avg %d (%s)",
67
xPortGetMinimumEverFreeHeapSize(),
68
avg_free_heap_size(),
69
- free_heap,
70
- free_heap-heap_samples[sample_idx%SAMPLES],
71
msg);
72
heap_samples[sample_idx%SAMPLES] = free_heap;
73
sample_idx++;
0 commit comments