dp-s_doc/Object/Log/Log.md

37 lines
559 B
Markdown
Raw Permalink Normal View History

2025-03-23 18:51:55 +08:00
# Log 类函数文档
**类说明**
`Log`类为日志相关操作在使用前请先在sqr_main中初始化。
```
//初始化日志器
Log({
"normal": "/dp_s/log/normal.log",
"error": "/dp_s/log/error.log"
});
```
---
### 函数签名
**公有函数**
- `function Put(Type,Msg)`
### 参数
- `Type`:日志类型
- `Msg`:日志字符串
**这里给出一个例子**
---
```
Log.Put("normal", "测试日志");
Log.Put("error", "测试错误日志");
```
---
---