src.nth.io/

summaryrefslogtreecommitdiff
path: root/main/app_main.c
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2021-05-31 15:15:39 -0500
committerLuke Hoersten <[email protected]>2021-05-31 15:15:39 -0500
commit33d97320ab03c22640fcae651c79e10e3f3579e9 (patch)
tree6c2218c329388a6028fe03b173d3cebcef268b39 /main/app_main.c
parentfbe49903b04df9aa16cd1bc5bd795c113cddeaaa (diff)
Cleaned up logging.
Diffstat (limited to 'main/app_main.c')
-rw-r--r--main/app_main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/app_main.c b/main/app_main.c
index bfd4d4f..69611b1 100644
--- a/main/app_main.c
+++ b/main/app_main.c
@@ -67,10 +67,10 @@ static void intercom_init(void *p)
app_wifi_init(); /* Initialize Wi-Fi */
hap_start(); /* After all the initializations are done, start the HAP core */
- ESP_LOGI(TAG, "Intercom HAP started");
+ ESP_LOGI(TAG, "HAP started");
app_wifi_start(portMAX_DELAY); /* Start Wi-Fi */
- ESP_LOGI(TAG, "Intercom WIFI started");
+ ESP_LOGI(TAG, "WIFI started");
vTaskDelete(NULL); /* The task ends here. The read/write callbacks will be invoked by the HAP Framework */
}