From 7dce2b73fdaf1bcc8601642ccf8043acaa1695f8 Mon Sep 17 00:00:00 2001 From: wangcongtao Date: Fri, 26 Feb 2021 11:51:22 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8D=87=E7=BA=A7sdk=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gradle.properties | 2 +- .../module/service/uploadintime/SnapshotLocationController.java | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 46f1a55dc2..ed89350985 100644 --- a/gradle.properties +++ b/gradle.properties @@ -161,7 +161,7 @@ MOGO_PASSPORT_VERSION=1.0.41 # 常链接 MOGO_SOCKET_VERSION=1.0.41 # 数据采集 -MOGO_REALTIME_VERSION=1.0.41 +MOGO_REALTIME_VERSION=1.0.42 # 探路,道路事件发布,获取 MOGO_TANLU_VERSION=1.0.41 # 直播推流 diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/uploadintime/SnapshotLocationController.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/uploadintime/SnapshotLocationController.java index 06c2edb5c6..9a4c8f3200 100644 --- a/modules/mogo-module-service/src/main/java/com/mogo/module/service/uploadintime/SnapshotLocationController.java +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/uploadintime/SnapshotLocationController.java @@ -125,6 +125,7 @@ class SnapshotLocationController { mLastLocationInfo = null; } } + Logger.d( TAG, "upload loc size = %s", list == null ? 0 : list.size() ); return list; } @@ -134,6 +135,7 @@ class SnapshotLocationController { * @return */ public int getDataAccuracy() { + Logger.d( TAG, "upload loc accuracy = %s", mDataAccuracy ); return mDataAccuracy; } }