libcamera  v0.5.0
Supporting cameras in Linux since 2019
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Public Member Functions | List of all members
libcamera::LogMessage Class Reference

Internal log message representation. More...

Public Member Functions

 LogMessage (const char *fileName, unsigned int line, const LogCategory &category, LogSeverity severity, std::string prefix={})
 Construct a log message for a given category. More...
 
std::ostream & stream ()
 
const utils::time_pointtimestamp () const
 Retrieve the timestamp of the log message. More...
 
LogSeverity severity () const
 Retrieve the severity of the log message. More...
 
const LogCategorycategory () const
 Retrieve the category of the log message. More...
 
const std::string & fileInfo () const
 Retrieve the file info of the log message. More...
 
const std::string & prefix () const
 Retrieve the prefix of the log message. More...
 
const std::string msg () const
 Retrieve the message text of the log message. More...
 

Detailed Description

Internal log message representation.

The LogMessage class models a single message in the log. It serves as a helper to provide the std::ostream API for logging, and must never be used directly. Use the LOG() macro instead access the log infrastructure.

Constructor & Destructor Documentation

◆ LogMessage()

libcamera::LogMessage::LogMessage ( const char *  fileName,
unsigned int  line,
const LogCategory category,
LogSeverity  severity,
std::string  prefix = {} 
)

Construct a log message for a given category.

Parameters
[in]fileNameThe file name where the message is logged from
[in]lineThe line number where the message is logged from
[in]categoryThe log message category, controlling how the message will be displayed
[in]severityThe log message severity, controlling how the message will be displayed
[in]prefixThe log message prefix

Create a log message pertaining to line line of file fileName. The severity argument sets the message severity to control whether it will be output or dropped. The prefix optionally identifies the object instance logging the message.

Member Function Documentation

◆ category()

libcamera::LogMessage::category ( ) const
inline

Retrieve the category of the log message.

Returns
The category of the message

◆ fileInfo()

libcamera::LogMessage::fileInfo ( ) const
inline

Retrieve the file info of the log message.

Returns
The file info of the message

◆ msg()

libcamera::LogMessage::msg ( ) const
inline

Retrieve the message text of the log message.

Returns
The message text of the message, as a string

◆ prefix()

libcamera::LogMessage::prefix ( ) const
inline

Retrieve the prefix of the log message.

Returns
The prefix of the message

◆ severity()

libcamera::LogMessage::severity ( ) const
inline

Retrieve the severity of the log message.

Returns
The severity of the message

◆ stream()

std::ostream & libcamera::LogMessage::stream ( )
inline

Data is added to a LogMessage through the stream returned by this function. The stream implements the std::ostream API and can be used for logging as std::cout.

Returns
A reference to the log message stream

◆ timestamp()

libcamera::LogMessage::timestamp ( ) const
inline

Retrieve the timestamp of the log message.

Returns
The timestamp of the message

The documentation for this class was generated from the following files: