logMessage overloads

Synopses

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);

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);

Parameters

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

Created with MrDocs