- Fix link resolution with proper relative/absolute path handling - Improve link styling with underline decoration - Hide leaf nodes from tree, only show directories - Fix log file path for packaged app
747 B
747 B
ILogSink::Log
virtual void Log(const LogEntry& entry) = 0
输出单条日志到目标介质。Logger 在每次日志记录时调用此方法,将包含完整日志信息的 LogEntry 传入。派生类需要实现具体的输出逻辑。
参数:
entry- 日志条目,包含级别、分类、消息、时间戳、线程 ID 等完整信息
复杂度: O(1)
示例:
class NetworkLogSink : public XCEngine::Debug::ILogSink {
public:
void Log(const XCEngine::Debug::LogEntry& entry) override {
// 将日志发送到远程服务器
sendToServer(entry.message.CStr());
}
void Flush() override { }
};
相关文档
- ILogSink 总览 - 返回类总览