1 Star 0 Fork 4

nbsnail/ccfast

forked from zhouxiang/ccfast 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
logger.h 628 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhouxiang 提交于 2015-02-26 18:27 . init project
#ifndef LOGGER_H
#define LOGGER_H
#include <fstream>
#include <boost/date_time/posix_time/posix_time.hpp>
#define LOGGERFILE "/var/log/ccfast.log"
class Logger
{
public:
static void debug(const char* msg_)
{
using namespace std;
using namespace boost;
static ofstream _debug;
if(!_debug.is_open())
{
_debug.open(LOGGERFILE, ios_base::out | ios_base::app);
_debug.imbue(locale(_debug.getloc(), new posix_time::time_facet()));
}
_debug << '[' << posix_time::second_clock::local_time() << "] " << msg_ << endl;
}
};
#endif // LOGGER_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/nbsnail/ccfast.git
git@gitee.com:nbsnail/ccfast.git
nbsnail
ccfast
ccfast
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385