MCPcopy Create free account
hub / github.com/SNAS/openbmp / Print

Method Print

Server/src/Logger.cpp:147–160  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

145}
146
147void Logger::Print(const char *sev, const char *func_name, const char *msg, ...)
148{
149 va_list args; // varialbe args
150
151 // Begin the args
152 va_start (args, msg);
153
154 // Print without the filename and line number included
155 printV(sev, logFile, NULL, 0, func_name, msg, args);
156 fflush(logFile);
157
158 // Free/end the args
159 va_end(args);
160}
161
162/*********************************************************************//**
163 * Prints the message

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected