add logcatch debug view

This commit is contained in:
zhongchao
2022-01-07 20:37:26 +08:00
parent 202f7bf3c3
commit 5105e66388
44 changed files with 2594 additions and 5 deletions

View File

@@ -5,7 +5,16 @@ package com.mogo.eagle.core.function.api.devatools
*/
interface IMoGoDevaToolsListener {
/**
* 日志抓取关闭回调(日志抓取忘记关闭,默认设置时长计时返回)
*/
fun onLogCatchClose(){
}
/**
* 日志抓取按行返回 lineLog
* 注:莫要在此回调中打印日志,否则会造成日志循环记录
*/
fun onLogCatch(lineLog : String)
}