| 1234567891011121314151617181920212223242526 |
- package com.adealink.weparty.log
- import com.adealink.frame.log.ILogConfig
- import com.adealink.frame.network.INetworkService
- import com.adealink.frame.oss.IOssService
- import com.adealink.weparty.App
- /**
- * Created by sunxiaodong on 2021/6/20.
- */
- class LogConfig : ILogConfig {
- override val networkService: INetworkService
- get() = App.instance.networkService
- override val ossService: IOssService
- get() = App.instance.ossService
- override fun stat(tag: String, msg: String) {
- // LogErrorStatEvent(LogErrorStatEvent.Action.LOG)
- // .apply {
- // this.tag to tag
- // this.msg to msg
- // }
- // .send()
- }
- }
|