Skip to content

Commit

Permalink
新增日志拦截、方便调试
Browse files Browse the repository at this point in the history
  • Loading branch information
jenly1314 committed Dec 4, 2017
1 parent 8ea62b7 commit 8c55498
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,10 @@ public class Api {
}

private static ApiService getApiService(){
return ApiManager.getInstance().getApiService(ApiService.class);
if(apiService == null){
apiService = ApiManager.getInstance().getApiService(ApiService.class);
}
return apiService;
}

public static void getApiAddr(String ip, SimpleCallback<IPAddress> callback){
Expand All @@ -90,19 +93,19 @@ public class Api {
更多使用详情,请查看[app](app)中的源码使用示例

## 关于我
Name: Jenly
Name: <a title="关于作者" href="https://about.me/jenly1314" target="_blank">Jenly</a>

Email: jenly1314@gmail.com / jenly1314@vip.qq.com
Email: <a title="欢迎邮件与我交流" href="mailto:jenly1314@gmail.com" target="_blank">jenly1314#gmail.com</a> / <a title="给我发邮件" href="mailto:jenly1314@vip.qq.com" target="_blank">jenly1314#vip.qq.com</a>

CSDN: http://blog.csdn.net/jenly121
CSDN: <a title="CSDN博客" href="http://blog.csdn.net/jenly121" target="_blank">jenly121</a>

Github: https://github.com/jenly1314
Github: <a title="Github开源项目" href="https://github.com/jenly1314" target="_blank">jenly1314</a>

微信公众号:

![公众号](http://olambmg9j.bkt.clouddn.com/jenly666.jpg)

加入QQ群: [20867961](http://shang.qq.com/wpa/qunwpa?idkey=8fcc6a2f88552ea44b1411582c94fd124f7bb3ec227e2a400dbbfaad3dc2f5ad)
加入QQ群: <a title="点击加入QQ群" href="http://shang.qq.com/wpa/qunwpa?idkey=8fcc6a2f88552ea44b1411582c94fd124f7bb3ec227e2a400dbbfaad3dc2f5ad" target="_blank">20867961</a>



0 comments on commit 8c55498

Please sign in to comment.