![]() |
Deskflow 1.24.0.365
Keyboard and mouse sharing utility
|
Write log to debugger. More...
#include <MSWindowsDebugOutputter.h>


Public Member Functions | |
| MSWindowsDebugOutputter ()=default | |
| ~MSWindowsDebugOutputter () override=default | |
| void | open (const QString &title) override |
| Open the outputter. | |
| void | close () override |
| Close the outputter. | |
| bool | write (LogLevel level, const QString &message) override |
| Write a message with level. | |
| void | flush () |
| Public Member Functions inherited from ILogOutputter | |
| virtual | ~ILogOutputter ()=default |
Write log to debugger.
This outputter writes output to the debugger. In Visual Studio, this can be seen in the Output window.
|
default |
|
overridedefault |
|
overridevirtual |
Close the outputter.
Close the outputter. Calling this method on an already closed outputter must have no effect.
Implements ILogOutputter.
| void MSWindowsDebugOutputter::flush | ( | ) |
|
overridevirtual |
Open the outputter.
Opens the outputter for writing. Calling this method on an already open outputter must have no effect.
Implements ILogOutputter.
|
overridevirtual |
Write a message with level.
Writes message, which has the given level, to a log. If this method returns true then Log will stop passing the message to all outputters in the outputter chain, otherwise it continues. Most implementations should return true.
Implements ILogOutputter.