公告板
版本库
filestore
活动
搜索
登录
Android
/
Security
安卓进出入
概况
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
git init
liuxiaolong
2019-05-06
573d1e33a32da5c55c638df2ee622d972976c1d0
[Android/Security.git]
/
app
/
src
/
main
/
cpp
/
LogUtil.cpp
1
2
3
4
5
6
7
8
9
10
11
#include "LogUtil.h"
#include <stdio.h>
#include <string>
#include <iostream>
using namespace std;
void LogUtil::log(string message) {
cout << message << endl;
}