MCPcopy Create free account
hub / github.com/ddnet/ddnet / Log

Method Log

src/base/log.cpp:192–202  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

190 m_Filter.m_MaxLevel.store(LEVEL_TRACE, std::memory_order_relaxed);
191 }
192 void Log(const CLogMessage *pMessage) override
193 {
194 if(m_Filter.Filters(pMessage))
195 {
196 return;
197 }
198 for(auto &pLogger : m_vpLoggers)
199 {
200 pLogger->Log(pMessage);
201 }
202 }
203 void GlobalFinish() override
204 {
205 for(auto &pLogger : m_vpLoggers)

Callers

nothing calls this directly

Calls 2

FiltersMethod · 0.80
LogMethod · 0.45

Tested by

no test coverage detected