Home
last modified time | relevance | path

Searched refs:JsEnvLogLevel (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/ability/ability_runtime/js_environment/frameworks/utils/include/
H A Djs_env_logger.h21 enum class JsEnvLogLevel { enum
30 …static void(*logger)(JsEnvLogLevel level, const char* fileName, const char* functionName, int line,
37 …JsEnvLogger::logger(JsEnvLogLevel::DEBUG, __FILENAME__, __FUNCTION__, __LINE__, fmt, ##__VA_ARGS__)
39 … JsEnvLogger::logger(JsEnvLogLevel::INFO, __FILENAME__, __FUNCTION__, __LINE__, fmt, ##__VA_ARGS__)
41 … JsEnvLogger::logger(JsEnvLogLevel::WARN, __FILENAME__, __FUNCTION__, __LINE__, fmt, ##__VA_ARGS__)
43 …JsEnvLogger::logger(JsEnvLogLevel::ERROR, __FILENAME__, __FUNCTION__, __LINE__, fmt, ##__VA_ARGS__)
45 …JsEnvLogger::logger(JsEnvLogLevel::FATAL, __FILENAME__, __FUNCTION__, __LINE__, fmt, ##__VA_ARGS__)
/ohos5.0/foundation/ability/ability_runtime/frameworks/native/runtime/
H A Dohos_js_env_logger.cpp37 void JsEnvLogger(JsEnv::JsEnvLogLevel level, const char* fileName, const char* functionName, int li… in JsEnvLogger()
45 case JsEnv::JsEnvLogLevel::DEBUG: in JsEnvLogger()
48 case JsEnv::JsEnvLogLevel::INFO: in JsEnvLogger()
51 case JsEnv::JsEnvLogLevel::WARN: in JsEnvLogger()
54 case JsEnv::JsEnvLogLevel::ERROR: in JsEnvLogger()
57 case JsEnv::JsEnvLogLevel::FATAL: in JsEnvLogger()
/ohos5.0/foundation/ability/ability_runtime/js_environment/frameworks/utils/src/
H A Djs_env_logger.cpp19 void(*JsEnvLogger::logger)(JsEnvLogLevel level, const char* fileName, const char* functionName, int…