dp-s_doc/Object/Log/Log.md

37 lines
559 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 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", "测试错误日志");
```
---
---