Files
MoGoEagleEye/libraries/mapmodule/src/main/java/com/autonavi/nge/NLogger.kt
2023-08-07 11:21:55 +08:00

17 lines
421 B
Kotlin
Raw 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.
package com.autonavi.nge
object NLog {
/**设置log等级控制log输出
* @param level 0,error,1,warn,2,info
*/
external fun setLevel(level : Int)
/**设置是否输出文件日志
* @param write 是否输出文件日志
*/
external fun setWriteFile(write: Boolean)
/**
*关闭log输出
*/
external fun close()
}