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
This commit is contained in:
29
docs/api/debug/ilogsink/log.md
Normal file
29
docs/api/debug/ilogsink/log.md
Normal file
@@ -0,0 +1,29 @@
|
||||
# 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) - 返回类总览
|
||||
Reference in New Issue
Block a user