MCPcopy Create free account
hub / github.com/crownengine/crown / vlogx

Function vlogx

src/device/log.cpp:77–86  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

75 }
76
77 void vlogx(LogSeverity::Enum sev, System system, const char *format, va_list args)
78 {
79 ScopedMutex sm(s_mutex);
80
81 char buf[8192];
82 stbsp_vsnprintf(buf, sizeof(buf), format, args);
83
84 stdout_log(sev, system, buf);
85 console_log(sev, system, buf);
86 }
87
88 void logx(LogSeverity::Enum sev, System system, const char *format, ...)
89 {

Callers 1

logxFunction · 0.85

Calls 2

stdout_logFunction · 0.85
console_logFunction · 0.85

Tested by

no test coverage detected