CSEngine
Loading...
Searching...
No Matches
SafeLog Class Reference

Static Public Member Functions

static void Log (const char *log)
 

Detailed Description

Definition at line 3 of file SafeLog.h.

Member Function Documentation

◆ 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: