MCPcopy Create free account
hub / github.com/Phobos-developers/Phobos / Log

Method Log

src/Utilities/Debug.cpp:13–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11int Debug::CurrentBufferSize = 0;
12
13void Debug::Log(const char* pFormat, ...)
14{
15 va_list args;
16 va_start(args, pFormat);
17 vsprintf_s(FinalStringBuffer, pFormat, args);
18 LogGame("%s %s", "[Phobos]", FinalStringBuffer);
19 va_end(args);
20}
21
22void Debug::LogGame(const char* pFormat, ...)
23{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected