From 2b4c2e8338406642ff9d736ec6bf0658493b0ca8 Mon Sep 17 00:00:00 2001 From: "Morgan 'ARR\\!' Allen" Date: Fri, 10 Sep 2021 20:38:38 -0700 Subject: [PATCH] make reset an error just to call it out --- main/ble.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/ble.c b/main/ble.c index 22af09b..68cfbe4 100644 --- a/main/ble.c +++ b/main/ble.c @@ -458,7 +458,7 @@ static void on_sync() { } static void on_reset(int reason) { - ESP_LOGI(TAG, "on_reset, reason: %d", reason); + ESP_LOGE(TAG, "on_reset, reason: %d", reason); } void nimble_host_task(void *param) {