MCPcopy Create free account
hub / github.com/crownengine/crown / log

Function log

src/core/os.cpp:81–89  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

79 }
80
81 void log(const char *msg)
82 {
83#if CROWN_PLATFORM_ANDROID
84 __android_log_write(ANDROID_LOG_DEBUG, "crown", msg);
85#else
86 fputs(msg, stdout);
87 fflush(stdout);
88#endif
89 }
90
91#if CROWN_PLATFORM_POSIX
92 void stat(Stat &st, int fd)

Callers 1

stdout_logFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected