Tio-Android如何查看Log日志
tio-android 日志默认是关闭的,需要手动开启
1、开启日志显示:
mTioClient.setDebug(true);
2、过滤并查看日志:
- TAG为:
TioClient
消息包的打印均为标准json格式字符串:
{
"command":4,
"gzip":0,
"bodyLength":33,
"body":{
"c":1,
"g":"/product/index.html"
}
}
3、附录:tio-android状态总览
/**
* 闲置
*/
IDLE,
/**
* 正在连接
*/
CONNECTING,
/**
* 已连接
*/
CONNECTED,
/**
* 正在断开
*/
DISCONNECTING,
/**
* 已断开
*/
DISCONNECTED,
/**
* 异常
*/
ERROR