2024-03-18 18:50:29 +08:00

10 lines
513 B
TypeScript
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.

/* eslint-disable */
// 唯一一个变量格式有问题的, 但是为了和原来 TUICallKit 对外暴露的保持一致
export enum LOG_LEVEL {
NORMAL = 0, // 普通级别,日志量较多,接入时建议使用
RELEASE = 1, // release级别SDK 输出关键信息,生产环境时建议使用
WARNING = 2, // 告警级别SDK 只输出告警和错误级别的日志
ERROR = 3, // 错误级别SDK 只输出错误级别的日志
NONE = 4, // 无日志级别SDK 将不打印任何日志
}