Create a logging stream for the given category, location, and severity.
Declared in <ball_log.h>
Log_Stream(
Category const* category,
std::string_view const& fileName,
int lineNumber,
int severity);
Create a logging stream that holds (1) the specified category and severity, (2) a record that is created from the specified fileName and lineNumber, and (3) an bsl::ostream to which the log message is put.
| Name | Description |
|---|---|
| category | category to which the record will be logged |
| fileName | source file name attribute for the record |
| lineNumber | source line number attribute for the record |
| severity | severity at which the record will be logged |