Functions | |
LoggerSinkPtr | StdErrLoggerSink () |
Creates a Logger Sink object with Stderr as a target. | |
LoggerSinkPtr | StdOutLoggerSink () |
Creates a Logger Sink object with Stdout as a target. | |
LoggerSinkPtr | RotatingFileLoggerSink (const StringPtr &fileName, SizeT maxFileSize, SizeT maxFiles) |
Creates a Logger Sink object with rotating files as a target. More... | |
LoggerSinkPtr | BasicFileLoggerSink (const StringPtr &fileName) |
Creates a Logger Sink object with basic file as a target. More... | |
ListPtr< ILoggerSink > | DefaultSinks (const StringPtr &fileName=nullptr) |
Creates a list of Sink objects. More... | |
|
inline |
Creates a Logger Sink object with basic file as a target.
fileName | The name of the file. |
|
inline |
Creates a list of Sink objects.
fileName | The base file name for rotating files sink. |
The rotating files sink is present in the created list if fileName
is provided, otherwise only Stdout and WinDebug sinks are present
|
inline |
Creates a Logger Sink object with rotating files as a target.
fileName | The base name of the files. |
maxFileSize | The maximum size of each file. |
maxFiles | The maximum count of files. |