Lean
$LEAN_TAG$
|
Provides an ILogHandler implementation that composes multiple handlers More...
Public Member Functions | |
CompositeLogHandler () | |
Initializes a new instance of the CompositeLogHandler that pipes log messages to the console and log.txt More... | |
CompositeLogHandler (params ILogHandler[] handlers) | |
Initializes a new instance of the CompositeLogHandler class from the specified handlers More... | |
void | Error (string text) |
Write error message to log More... | |
void | Debug (string text) |
Write debug message to log More... | |
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... | |
Provides an ILogHandler implementation that composes multiple handlers
Definition at line 23 of file CompositeLogHandler.cs.
QuantConnect.Logging.CompositeLogHandler.CompositeLogHandler | ( | ) |
Initializes a new instance of the CompositeLogHandler that pipes log messages to the console and log.txt
Definition at line 30 of file CompositeLogHandler.cs.
QuantConnect.Logging.CompositeLogHandler.CompositeLogHandler | ( | params ILogHandler[] | handlers | ) |
Initializes a new instance of the CompositeLogHandler class from the specified handlers
handlers | The implementations to compose |
Definition at line 39 of file CompositeLogHandler.cs.
void QuantConnect.Logging.CompositeLogHandler.Error | ( | string | text | ) |
Write error message to log
text |
Implements QuantConnect.Logging.ILogHandler.
Definition at line 53 of file CompositeLogHandler.cs.
void QuantConnect.Logging.CompositeLogHandler.Debug | ( | string | text | ) |
Write debug message to log
text |
Implements QuantConnect.Logging.ILogHandler.
Definition at line 65 of file CompositeLogHandler.cs.
void QuantConnect.Logging.CompositeLogHandler.Trace | ( | string | text | ) |
Write debug message to log
text |
Implements QuantConnect.Logging.ILogHandler.
Definition at line 77 of file CompositeLogHandler.cs.
void QuantConnect.Logging.CompositeLogHandler.Dispose | ( | ) |
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
<filterpriority>2</filterpriority>
Definition at line 89 of file CompositeLogHandler.cs.