Merge branch 'dev_robobus-d_241202_6.8.4' into dev_robotaxi-d_241210_6.9.0
# Conflicts: # OCH/offline/driver/src/main/java/com/mogo/och/offline/model/OrderModel.java
This commit is contained in:
@@ -39,5 +39,15 @@ class MogoLogCatchConst {
|
||||
* 下发关闭链路的类型
|
||||
*/
|
||||
const val LOCAL_CONFIG_CLOSE_SINGLE_FW = 7
|
||||
|
||||
/**
|
||||
* 打开高精地图每个瓦片数据文件下载、删除的日志
|
||||
*/
|
||||
const val OPEN_HD_MAP_TILE_FILE_LOG = 8
|
||||
|
||||
/**
|
||||
* 关闭高精地图每个瓦片数据文件下载、删除的日志
|
||||
*/
|
||||
const val CLOSE_HD_MAP_TILE_FILE_LOG = 9
|
||||
}
|
||||
}
|
||||
@@ -26,16 +26,19 @@ import com.mogo.eagle.core.data.deva.chain.ChainConstant
|
||||
import com.mogo.eagle.core.data.deva.chain.ChainLogParam
|
||||
import com.mogo.eagle.core.utilcode.mogo.toast.TipToast
|
||||
import com.mogo.eagle.core.utilcode.util.ThreadUtils
|
||||
import com.mogo.map.MogoData.Companion.mogoMapData
|
||||
import com.zhidao.loglib.bean.RemoteLogPushContent
|
||||
import com.zhidao.loglib.call.LogInfoManagerFactory
|
||||
import com.zhidao.loglib.core.ILogListener
|
||||
import com.zhidao.loglib.core.LogInfoManager
|
||||
import com.zhjt.mogo_core_function_devatools.logcatch.MogoLogCatchConst.Companion.CACHE_MAP_UPLOAD
|
||||
import com.zhjt.mogo_core_function_devatools.logcatch.MogoLogCatchConst.Companion.CACHE_TRACE_UPLOAD
|
||||
import com.zhjt.mogo_core_function_devatools.logcatch.MogoLogCatchConst.Companion.CLOSE_HD_MAP_TILE_FILE_LOG
|
||||
import com.zhjt.mogo_core_function_devatools.logcatch.MogoLogCatchConst.Companion.LOCAL_CONFIG_CLOSE_LOG
|
||||
import com.zhjt.mogo_core_function_devatools.logcatch.MogoLogCatchConst.Companion.LOCAL_CONFIG_CLOSE_SINGLE_FW
|
||||
import com.zhjt.mogo_core_function_devatools.logcatch.MogoLogCatchConst.Companion.LOCAL_CONFIG_OPEN_LOG
|
||||
import com.zhjt.mogo_core_function_devatools.logcatch.MogoLogCatchConst.Companion.LOG_PUSH_TYPE
|
||||
import com.zhjt.mogo_core_function_devatools.logcatch.MogoLogCatchConst.Companion.OPEN_HD_MAP_TILE_FILE_LOG
|
||||
import com.zhjt.mogo_core_function_devatools.logcatch.MogoLogCatchConst.Companion.START_CATCH_LOG
|
||||
import com.zhjt.mogo_core_function_devatools.logcatch.MogoLogCatchConst.Companion.STOP_CATCH_LOG
|
||||
import com.zhjt.mogo_core_function_devatools.trace.TraceManager
|
||||
@@ -140,6 +143,22 @@ object MogoLogCatchManager : IMogoOnMessageListener<RemoteLogPushContent>, Handl
|
||||
}
|
||||
}
|
||||
}
|
||||
OPEN_HD_MAP_TILE_FILE_LOG -> {
|
||||
mogoMapData.get()?.let { map ->
|
||||
if (!map.isTileFileLogOpen()) {
|
||||
map.openTileFileLog(true)
|
||||
map.listenTileFileLog()
|
||||
}
|
||||
}
|
||||
}
|
||||
CLOSE_HD_MAP_TILE_FILE_LOG -> {
|
||||
mogoMapData.get()?.let { map ->
|
||||
if (map.isTileFileLogOpen()) {
|
||||
map.openTileFileLog(false)
|
||||
map.stopListenTileFileLog()
|
||||
}
|
||||
}
|
||||
}
|
||||
else -> {
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user