MCPcopy Create free account
hub / github.com/F-Stack/f-stack / LogTrace

Method LogTrace

adapter/micro_thread/micro_thread.h:342–350  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

340 printf("%s\n",szBuff);
341 };
342 inline void LogTrace(char* fmt, ...){
343 va_list args;
344 char szBuff[1024];
345 va_start(args, fmt);
346 memset(szBuff, 0, sizeof(szBuff));
347 vsprintf(szBuff, fmt, args);
348 va_end(args);
349 printf("%s\n",szBuff);
350 };
351 inline void LogError(char* fmt, ...){
352 va_list args;
353 char szBuff[1024];

Callers

nothing calls this directly

Calls 3

memsetFunction · 0.85
vsprintfFunction · 0.85
printfFunction · 0.50

Tested by

no test coverage detected