4
AutoPtr<SplitterChannel> splitterChannel(new SplitterChannel());

        AutoPtr<Channel> consoleChannel(new ConsoleChannel());
        AutoPtr<Channel> fileChannel(new FileChannel("Arcanite.log"));
        AutoPtr<FileChannel> rotatedFileChannel(new FileChannel("Arcanite_R.log"));

        rotatedFileChannel->setProperty("rotation", "100");
        rotatedFileChannel->setProperty("archive", "timestamp");

        splitterChannel->addChannel(consoleChannel);
        splitterChannel->addChannel(fileChannel);
        splitterChannel->addChannel(rotatedFileChannel);

        //"%d-%m-%Y %H:%M:%S: %t"
        AutoPtr<Formatter> formatter(new PatternFormatter("%d-%m-%Y %H:%M:%S %s: %t"));
        AutoPtr<Channel> formattingChannel(new FormattingChannel(formatter, splitterChannel));


        Logger& sLog = Logger::create("LogChan", formattingChannel, Message::PRIO_TRACE);

我已经在多个类中编写了我想用于我的服务器的记录器。我怎样才能适应它来做到这一点?这可能是基本的 C++,但我似乎错过了一些课程:P

4

1 回答 1

5

Poco::Logger 类用作日志框架。

当您定义一个具有固定名称的记录器实例(在您的示例中为“LogChan”)时,您的所有类都可以访问它。所以你应该做一个

Logger& logger = Logger::get("logChan"); 

从您的其他课程中获取记录器参考。

我猜它下面使用单例模式来生成记录器池。

于 2013-01-02T15:40:50.837 回答