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

34 lines
800 B
Markdown
Raw Normal View History

# ILogSink::Log
```cpp
virtual void Log(const LogEntry& entry) = 0
```
输出单条日志到目标介质。`Logger` 在每次日志记录时调用此方法,将包含完整日志信息的 `LogEntry` 传入。派生类需要实现具体的输出逻辑。
**参数:**
- `entry` - 日志条目,包含级别、分类、消息、时间戳、线程 ID 等完整信息
2026-03-20 02:35:07 +08:00
**返回:** 无
**异常:** 无
**线程安全:** ✅ 线程安全
**示例:**
```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) - 返回类总览