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

Method LogError

adapter/micro_thread/micro_thread.h:351–359  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

349 printf("%s\n",szBuff);
350 };
351 inline void LogError(char* fmt, ...){
352 va_list args;
353 char szBuff[1024];
354 va_start(args, fmt);
355 memset(szBuff, 0, sizeof(szBuff));
356 vsprintf(szBuff, fmt, args);
357 va_end(args);
358 printf("%s\n",szBuff);
359 };
360
361};
362

Callers

nothing calls this directly

Calls 3

memsetFunction · 0.85
vsprintfFunction · 0.85
printfFunction · 0.50

Tested by

no test coverage detected