MCPcopy Create free account
hub / github.com/alliedmodders/sourcemod / LogToOpenFile

Method LogToOpenFile

core/logic/Logger.cpp:136–147  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

134}
135
136void Logger::LogToOpenFile(FILE *fp, const char *msg, ...)
137{
138 if (!m_Active)
139 {
140 return;
141 }
142
143 va_list ap;
144 va_start(ap, msg);
145 LogToOpenFileEx(fp, msg, ap);
146 va_end(ap);
147}
148
149void Logger::LogToFileOnly(FILE *fp, const char *msg, ...)
150{

Callers 4

sm_LogToOpenFileFunction · 0.80
sm_LogToOpenFileExFunction · 0.80
LogToFileFunction · 0.80
LogToFileExFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected