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

Method LogDebug

adapter/micro_thread/micro_thread.h:333–341  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

331 bool CheckError(){ return false;};
332
333 inline void LogDebug(char* fmt, ...){
334 va_list args;
335 char szBuff[1024];
336 va_start(args, fmt);
337 memset(szBuff, 0, sizeof(szBuff));
338 vsprintf(szBuff, fmt, args);
339 va_end(args);
340 printf("%s\n",szBuff);
341 };
342 inline void LogTrace(char* fmt, ...){
343 va_list args;
344 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