From 1af136972a233fbf440fa16005f80e51f8334334 Mon Sep 17 00:00:00 2001 From: xuxinchao Date: Thu, 23 Nov 2023 16:58:48 +0800 Subject: [PATCH] =?UTF-8?q?[6.2.0]=E5=88=A0=E9=99=A4=E6=8E=A5=E7=AE=A1View?= =?UTF-8?q?=E5=86=97=E4=BD=99=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mogo/eagle/core/function/hmi/ui/vehicle/TakeOverView.kt | 3 --- 1 file changed, 3 deletions(-) diff --git a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/vehicle/TakeOverView.kt b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/vehicle/TakeOverView.kt index f8b7c2e69d..adfc3f1438 100644 --- a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/vehicle/TakeOverView.kt +++ b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/vehicle/TakeOverView.kt @@ -56,13 +56,10 @@ class TakeOverView @JvmOverloads constructor( } override fun onAutopilotStatusResponse(state: Int) { - CallerLogger.i(M_HMI + TAG, "onAutopilotStatusResponse state=$state") if(state == 7){ isParallel = true - CallerLogger.i(M_HMI + TAG, "onAutopilotStatusResponse isParallel status=true") }else if(state == 0 || state == 1){ isParallel = false - CallerLogger.i(M_HMI + TAG, "onAutopilotStatusResponse isParallel status=false") } }