logMessage overloads
Declared in <ball_loggermanager.h>
Log and dispose of the specified record under category and severity.
void
logMessage(
Category const& category,
int severity,
Record* record);
» more...
Log a message under the specified category and severity.
void
logMessage(
Category const& category,
int severity,
std::string_view const& fileName,
int lineNumber,
std::string_view const& message);
» more...
| Name | Description |
|---|---|
| category | category under which the record is logged |
| severity | severity level assigned to the record |
| record | record to log and then dispose of |
| fileName | source file name recorded with the message |
| lineNumber | source line number recorded with the message |
| message | text of the log message |