|
static void | Log (const char *log) |
|
Definition at line 3 of file SafeLog.h.
◆ Log()
void SafeLog::Log |
( |
const char * |
log | ) |
|
|
static |
Definition at line 17 of file SafeLog.cpp.
17 {
18
19#ifdef _WIN32
20 OutputDebugStringA(log);
21 puts(log);
22#elif __ANDROID__
23 LOGE(log, 0);
24#elif __linux__
25 puts(log);
26#elif __EMSCRIPTEN__
27 puts(log);
28#elif __APPLE_CC__
29 puts(log);
30#endif
31
32}
The documentation for this class was generated from the following files: