标签: c++ logging
我是C ++新手,我想为应该代表日志的输出消息编写一个简单的日志记录类。我来这里问你怎么能让我的功能接受这种论点:
LOG("My name is %s", NAME).
我的函数如何接受NAME作为%s的参数?
%s
功能:
bool LOG (FILE *log, std::string pMsg) { //... }