Cantera
3.1.0a1
|
Logger that delegates to an external source via a callback to produce log output. More...
#include <ExternalLogger.h>
Logger that delegates to an external source via a callback to produce log output.
Definition at line 13 of file ExternalLogger.h.
Public Member Functions | |
ExternalLogger (LogCallback writer) | |
void | write (const string &msg) override |
Write a log message. More... | |
void | writeendl () override |
Write an end of line character and flush output. More... | |
void | warn (const string &warning, const string &msg) override |
Write a warning message. More... | |
void | error (const string &msg) override |
Write an error message and quit. More... | |
Public Member Functions inherited from Logger | |
Logger () | |
Constructor - empty. More... | |
virtual | ~Logger () |
Destructor - empty. More... | |
Private Attributes | |
string | m_writeBuffer |
LogCallback | m_writer = nullptr |
|
inlineoverridevirtual |
Write a log message.
The default behavior is to write to the standard output. Note that no end-of-line character is appended to the message, and so if one is desired it must be included in the string.
msg | String message to be written to cout |
Reimplemented from Logger.
Definition at line 25 of file ExternalLogger.h.
|
inlineoverridevirtual |
Write an end of line character and flush output.
Some systems treat endl and
differently. The endl statement causes a flushing of stdout to the screen.
Reimplemented from Logger.
Definition at line 41 of file ExternalLogger.h.
|
inlineoverridevirtual |
Write a warning message.
The default behavior is to write to the logging output.
warning | String specifying type of warning |
msg | String message to be written to cout |
Reimplemented from Logger.
Definition at line 47 of file ExternalLogger.h.
|
inlineoverridevirtual |
Write an error message and quit.
The default behavior is to write to the standard error stream, and then call exit(). Note that no end-of-line character is appended to the message, and so if one is desired it must be included in the string. Note that this default behavior will terminate the application Cantera is invoked from (MATLAB, Excel, etc.) If this is not desired, then derive a class and reimplement this method.
msg | Error message to be written to cerr. |
Reimplemented from Logger.
Definition at line 51 of file ExternalLogger.h.