0.3.0
Loading...
Searching...
No Matches
Logger Class Reference

Utility class for logging. More...

Public Member Functions

 Logger ()
 Default constructor.
 
 Logger (const Logger &)=delete
 Copy constructor.
 
 Logger (const std::string &logpath)
 Constructor.
 
 Logger (Logger &&)=default
 Move constructor.
 
Loggeroperator= (const Logger &)=delete
 Copy assignment operator.
 
Loggeroperator= (Logger &&)=default
 Move assignment operator.
 
 ~Logger ()
 Destructor.
 

Static Public Member Functions

static const std::shared_ptr< spdlog::sinks::ringbuffer_sink_mt > & GetRingBufferSink ()
 Returns the ring buffer sink.
 

Static Private Member Functions

static void writeFooter () noexcept
 Writes the logging footer.
 
static void writeHeader () noexcept
 Writes the logging header.
 
static void writeSeparator () noexcept
 Writes a separation line to the console only.
 

Static Private Attributes

static std::shared_ptr< spdlog::sinks::ringbuffer_sink_mt > _ringBufferSink
 Ring buffer sink.
 

Detailed Description

Utility class for logging.

Use the Macros to do logging, as they can be turned off during compilation

  • LOG_DATA("Message {} {}", variable1, variable 2);
  • LOG_TRACE("Message {} {}", variable1, variable 2);
  • LOG_DEBUG("Message {} {}", variable1, variable 2);
  • LOG_INFO("Message {} {}", variable1, variable 2);
  • LOG_WARN("Message {} {}", variable1, variable 2);
  • LOG_ERROR("Message {} {}", variable1, variable 2);
  • LOG_CRITICAL("Message {} {}", variable1, variable 2);

Constructor & Destructor Documentation

◆ Logger()

Logger::Logger ( const std::string & logpath)
explicit

Constructor.

Parameters
[in]logpathRelative filepath to the logfile

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