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

Method INIParseFailed

src/Utilities/Debug.cpp:59–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

57}
58
59void Debug::INIParseFailed(const char* section, const char* flag, const char* value, const char* Message)
60{
61 const char* LogMessage = (Message == nullptr)
62 ? "Failed to parse INI file content: [%s]%s=%s\n"
63 : "Failed to parse INI file content: [%s]%s=%s (%s)\n"
64 ;
65
66 Debug::Log(LogMessage, section, flag, value, Message);
67}
68
69void Debug::FatalErrorAndExit(const char* pFormat, ...)
70{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected