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; } }