|
Robot Raconteur Core C++ Library
|
Base class of log record handler. More...
#include <Logging.h>
Public Member Functions | |
| virtual void | HandleLogRecord (const RRLogRecord &record)=0 |
| Function to accept log records from node. | |
Base class of log record handler.
By default, RobotRaconteurNode will print log records to std::cerr. Use RobotRaconteurNode::SetLogRecordHandler() to specify a LogRecordHandler to accept log records instead of printing them to the screen.
See Logging for more information.
|
pure virtual |
Function to accept log records from node.
Override in subclasses
| record | The log record |
Implemented in RobotRaconteur::FileLogRecordHandler.