Files
XCEngine/docs/api/debug/ilogsink/log.md

800 B

ILogSink::Log

virtual void Log(const LogEntry& entry) = 0

输出单条日志到目标介质。Logger 在每次日志记录时调用此方法,将包含完整日志信息的 LogEntry 传入。派生类需要实现具体的输出逻辑。

参数:

  • entry - 日志条目,包含级别、分类、消息、时间戳、线程 ID 等完整信息

返回:

异常:

线程安全: 线程安全

示例:

class NetworkLogSink : public XCEngine::Debug::ILogSink {
public:
    void Log(const XCEngine::Debug::LogEntry& entry) override {
        // 将日志发送到远程服务器
        sendToServer(entry.message.CStr());
    }
    void Flush() override { }
};

相关文档