ngscopeclient 0.1-dev+51fbda87c
|
Base class for all log sinks. More...
#include <log.h>
Public Member Functions | |
LogSink (Severity min_severity=Severity::VERBOSE) | |
Severity | GetSeverity () |
Returns the current severity / verbosity level. | |
std::string | GetIndentString () |
Gets the indent string (for now, only used by STDLogSink) More... | |
virtual void | Log (Severity severity, const std::string &msg)=0 |
virtual void | Log (Severity severity, const char *format, va_list va)=0 |
std::string | vstrprintf (const char *format, va_list va) |
Like sprintf, but self-managing a buffer with a std::string. | |
Protected Member Functions | |
std::string | WrapString (std::string str) |
Wraps long lines and adds indentation as needed. | |
virtual void | PreprocessLine (std::string &line) |
Do any processing required to a line before printing it. Nothing in the base class. More... | |
Protected Attributes | |
unsigned int | m_indentSize |
Number of spaces in one indentation. | |
unsigned int | m_termWidth |
Width of the console we're printing to, in characters. | |
bool | m_lastMessageWasNewline |
True if the last message ended in a character. | |
Severity | m_min_severity |
Minimum severity of messages to be printed. | |
Base class for all log sinks.
string LogSink::GetIndentString | ( | ) |
Gets the indent string (for now, only used by STDLogSink)
Each log message printed is prefixed with (indentLevel * indentSize) space characters. No parsing of newline etc characters is performed.
|
protectedvirtual |
Do any processing required to a line before printing it. Nothing in the base class.
Reimplemented in ColoredSTDLogSink.