[6.2.4] fix bug of trace log

This commit is contained in:
zhongchao
2023-12-07 18:27:41 +08:00
parent b5ef892630
commit 92fb43aec8

View File

@@ -23,12 +23,12 @@ object CallerAutopilotRecordListenerManager : CallerBase<IMoGoAutopilotRecordLis
"AutopilotRecord",
mapOf(
"recordPanelStat" to recordPanel.stat,
"recordPanelFilePath" to recordPanel.filename,
"recordPanelFilePath" to (recordPanel.filename?:""),
"recordPanelKey" to recordPanel.key,
"recordPanelId" to recordPanel.id,
"recordPanelDuration" to recordPanel.duration,
"recordPanelDiskFree" to recordPanel.diskFree,
"recordPanelNote" to recordPanel.note,
"recordPanelNote" to (recordPanel.note?:""),
"dockerV" to CallerAutoPilotStatusListenerManager.getDockerVersion()
)
)