Lean
$LEAN_TAG$
|
ILogHandler implementation that writes log output to console. More...
Public Member Functions | |
ConsoleLogHandler () | |
Initializes a new instance of the QuantConnect.Logging.ConsoleLogHandler class. More... | |
ConsoleLogHandler (string dateFormat=DefaultDateFormat) | |
Initializes a new instance of the QuantConnect.Logging.ConsoleLogHandler class. More... | |
virtual void | Error (string text) |
Write error message to log More... | |
virtual void | Debug (string text) |
Write debug message to log More... | |
virtual void | Trace (string text) |
Write debug message to log More... | |
void | Dispose () |
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. More... | |
ILogHandler implementation that writes log output to console.
Definition at line 25 of file ConsoleLogHandler.cs.
QuantConnect.Logging.ConsoleLogHandler.ConsoleLogHandler | ( | ) |
Initializes a new instance of the QuantConnect.Logging.ConsoleLogHandler class.
Definition at line 35 of file ConsoleLogHandler.cs.
QuantConnect.Logging.ConsoleLogHandler.ConsoleLogHandler | ( | string | dateFormat = DefaultDateFormat | ) |
Initializes a new instance of the QuantConnect.Logging.ConsoleLogHandler class.
dateFormat | Specifies the date format to use when writing log messages to the console window |
Definition at line 44 of file ConsoleLogHandler.cs.
|
virtual |
Write error message to log
text | The error text to log |
Implements QuantConnect.Logging.ILogHandler.
Definition at line 57 of file ConsoleLogHandler.cs.
|
virtual |
Write debug message to log
text | The debug text to log |
Implements QuantConnect.Logging.ILogHandler.
Reimplemented in QuantConnect.Logging.ConsoleErrorLogHandler.
Definition at line 72 of file ConsoleLogHandler.cs.
|
virtual |
Write debug message to log
text | The trace text to log |
Implements QuantConnect.Logging.ILogHandler.
Reimplemented in QuantConnect.Logging.ConsoleErrorLogHandler.
Definition at line 81 of file ConsoleLogHandler.cs.
void QuantConnect.Logging.ConsoleLogHandler.Dispose | ( | ) |
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
<filterpriority>2</filterpriority>
Definition at line 90 of file ConsoleLogHandler.cs.