docs: update core and debug API docs

This commit is contained in:
2026-03-20 02:35:07 +08:00
parent 0c073db4e8
commit e165dbea1c
73 changed files with 743 additions and 391 deletions

View File

@@ -16,10 +16,10 @@
| 方法 | 描述 |
|------|------|
| `FileLogSink(const Containers::String& filePath)` | [构造函数](construct.md) |
| `~FileLogSink()` | [析构函数](~filelogsink.md) |
| `void Log(const LogEntry& entry)` | [输出日志到文件](log.md) |
| `void Flush()` | [刷新缓冲区](flush.md) |
| [`FileLogSink(const Containers::String& filePath)`](construct.md) | 打开指定路径的文件用于日志写入 |
| [`~FileLogSink()`](~filelogsink.md) | 销毁实例并刷新缓冲区 |
| [`Log(const LogEntry& entry)`](log.md) | 将日志条目追加写入文件 |
| [`Flush()`](flush.md) | 刷新文件缓冲区确保数据写入磁盘 |
## 使用示例