1. 程式人生 > >使用Poco::Logger實現日誌功能

使用Poco::Logger實現日誌功能

使用的Poco標頭檔案及其對應的名稱空間

#include "Poco/FormattingChannel.h"
#include "Poco/FileChannel.h"
#include "Poco/PatternFormatter.h"

using Poco::Message;
using Poco::PatternFormatter;
using Poco::FileChannel;
using Poco::FormattingChannel;
using std::string;

測試程式碼