20#include "logging/loglevel.h" 
   34    explicit LogStreamBuf(std::shared_ptr<std::function<
void(LogLevel, 
const std::string &)>> logFuncPtr,
 
   35                 LogLevel lvl, LogLevel lvlMin)
 
   36        : logFuncPtr(logFuncPtr), lvl(lvl), minLevel(lvlMin)
 
 
   47    std::shared_ptr<std::function<void(LogLevel, 
const std::string &)>> logFuncPtr;
 
 
Log stream buffer with a minimum LogLevel, that redirects the buffered output to a logging function....
Definition log_streambuffer.h:28
LogStreamBuf(std::shared_ptr< std::function< void(LogLevel, const std::string &)> > logFuncPtr, LogLevel lvl, LogLevel lvlMin)
Construct a new LogStreamBuf.
Definition log_streambuffer.h:34
void setMinLevel(LogLevel lvlMin)
Set the minimum log level for this buffer.
Definition log_streambuffer.h:44