CCIMXDesktop
 
Loading...
Searching...
No Matches
Logger Namespace Reference

Provides thread-safe logging utilities for different severity levels. More...

Functions

void postDebug (const QString &info)
 Log a debug message.
 
void postInfo (const QString &info)
 Log an informational message.
 
void postWarning (const QString &info)
 Log a warning message.
 
void postError (const QString &info)
 Log an error message.
 
void postFatal (const QString &info)
 Log a fatal error message.
 

Detailed Description

Provides thread-safe logging utilities for different severity levels.

This namespace contains convenience functions for logging messages at standard severity levels. All functions are thread-safe and use the application's centralized logging infrastructure.

Function Documentation

◆ postDebug()

void Logger::postDebug ( const QString &  info)

Log a debug message.

Parameters
infoThe debug message to log
Note
These messages are typically only visible in debug builds

◆ postError()

void Logger::postError ( const QString &  info)

Log an error message.

Parameters
infoThe error message to log
Note
These messages indicate serious problems that affect functionality

◆ postFatal()

void Logger::postFatal ( const QString &  info)

Log a fatal error message.

Parameters
infoThe fatal error message to log
Note
These messages indicate critical failures that may terminate the application

◆ postInfo()

void Logger::postInfo ( const QString &  info)

Log an informational message.

Parameters
infoThe informational message to log
Note
These messages indicate normal application operation

◆ postWarning()

void Logger::postWarning ( const QString &  info)

Log a warning message.

Parameters
infoThe warning message to log
Note
These messages indicate potential issues that aren't critical