Files
XCSDD/docs/api/debug/ilogsink/log.md
ssdfasd 58a83f445a fix: improve doc link navigation and tree display
- 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
2026-03-19 12:44:08 +08:00

30 lines
747 B
Markdown

# ILogSink::Log
```cpp
virtual void Log(const LogEntry& entry) = 0
```
输出单条日志到目标介质。`Logger` 在每次日志记录时调用此方法,将包含完整日志信息的 `LogEntry` 传入。派生类需要实现具体的输出逻辑。
**参数:**
- `entry` - 日志条目,包含级别、分类、消息、时间戳、线程 ID 等完整信息
**复杂度:** O(1)
**示例:**
```cpp
class NetworkLogSink : public XCEngine::Debug::ILogSink {
public:
void Log(const XCEngine::Debug::LogEntry& entry) override {
// 将日志发送到远程服务器
sendToServer(entry.message.CStr());
}
void Flush() override { }
};
```
## 相关文档
- [ILogSink 总览](ilogsink.md) - 返回类总览