Log Class

Description

日志类。

用于设置自定义日志输出函数。

setLogFunc

设置自定义日志输出函数。

C

void easyar_Log_setLogFunc(easyar_FunctorOfVoidFromLogLevelAndString func)

C++17

static void setLogFunc(std::function<void(LogLevel, std::string)> func)

C++03

static void setLogFunc(FunctorOfVoidFromLogLevelAndString func)

Java

public static void setLogFunc(@Nonnull FunctorOfVoidFromLogLevelAndString func)

Kotlin

companion object fun setLogFunc(func: FunctorOfVoidFromLogLevelAndString): Unit

Objective-C

+ (void)setLogFunc:(void (^)(easyar_LogLevel level, NSString * message))func

Swift

public static func setLogFunc(_ `func`: @escaping (LogLevel, String) -> Void) -> Void

C#

public static void setLogFunc(Action<LogLevel, string> func)

resetLogFunc

清除自定义日志输出函数,还原成默认的日志输出函数。

C

void easyar_Log_resetLogFunc(void)

C++17

static void resetLogFunc()

C++03

static void resetLogFunc()

Java

public static void resetLogFunc()

Kotlin

companion object fun resetLogFunc(): Unit

Objective-C

+ (void)resetLogFunc

Swift

public static func resetLogFunc() -> Void

C#

public static void resetLogFunc()