liuxiaolong
2019-05-06 573d1e33a32da5c55c638df2ee622d972976c1d0
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;
}