File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
components/tesla_ble_vehicle Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -572,17 +572,17 @@ const char *carserver_operation_status_to_string(CarServer_OperationStatus_E sta
572
572
573
573
void log_carserver_response (const char *tag, const CarServer_Response *msg)
574
574
{
575
- ESP_LOGI (tag, " CarServerResponse:" );
575
+ ESP_LOGD (tag, " CarServerResponse:" );
576
576
if (msg->has_actionStatus )
577
577
{
578
- ESP_LOGI (tag, " ActionStatus:" );
579
- ESP_LOGI (tag, " result: %s" , carserver_operation_status_to_string (msg->actionStatus .result ));
578
+ ESP_LOGD (tag, " ActionStatus:" );
579
+ ESP_LOGD (tag, " result: %s" , carserver_operation_status_to_string (msg->actionStatus .result ));
580
580
if (msg->actionStatus .has_result_reason )
581
581
{
582
582
switch (msg->actionStatus .result_reason .which_reason )
583
583
{
584
584
case CarServer_ResultReason_plain_text_tag:
585
- ESP_LOGI (tag, " reason: %s" , msg->actionStatus .result_reason .reason .plain_text );
585
+ ESP_LOGD (tag, " reason: %s" , msg->actionStatus .result_reason .reason .plain_text );
586
586
break ;
587
587
default :
588
588
ESP_LOGD (tag, " unknown reason" );
You can’t perform that action at this time.
0 commit comments