MCPcopy Create free account
hub / github.com/acl-dev/acl / log_debug

Function log_debug

harmony/api12/acl_one/acl/src/main/cpp/logger.cpp:72–85  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

70}
71
72void log_debug(const char* fmt, ...)
73{
74 const char* ver = acl_version();
75 char tag[256];
76 snprintf(tag, sizeof(tag), "acl-%s", ver);
77 acl::string buf;
78
79 va_list ap;
80 va_start(ap, fmt);
81 buf.vformat(fmt, ap);
82 va_end(ap);
83
84 OH_LOG_Print(LOG_APP, LOG_DEBUG, LOG_DOMAIN, tag, "%{public}s", buf.c_str());
85}
86
87static int open_callback(const char*, void*) {
88 return 0;

Callers

nothing calls this directly

Calls 3

acl_versionFunction · 0.85
vformatMethod · 0.45
c_strMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…