|
Lean
$LEAN_TAG$
|
Provides an implementation of ILogHandler that writes all log messages to a file on disk without timestamps. More...
Public Member Functions | |
| RegressionFileLogHandler () | |
| Initializes a new instance of the RegressionFileLogHandler class that will write to a 'regression.log' file in the executing directory More... | |
Public Member Functions inherited from QuantConnect.Logging.FileLogHandler | |
| FileLogHandler (string filepath, bool useTimestampPrefix=true) | |
| Initializes a new instance of the FileLogHandler class to write messages to the specified file path. The file will be opened using FileMode.Append More... | |
| FileLogHandler () | |
| Initializes a new instance of the FileLogHandler class using 'log.txt' for the filepath. 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... | |
Additional Inherited Members | |
Protected Member Functions inherited from QuantConnect.Logging.FileLogHandler | |
| virtual string | CreateMessage (string text, string level) |
| Creates the message to be logged More... | |
Provides an implementation of ILogHandler that writes all log messages to a file on disk without timestamps.
This type is provided for convenience/setting from configuration
Definition at line 25 of file RegressionFileLogHandler.cs.
| QuantConnect.Logging.RegressionFileLogHandler.RegressionFileLogHandler | ( | ) |
Initializes a new instance of the RegressionFileLogHandler class that will write to a 'regression.log' file in the executing directory
Definition at line 31 of file RegressionFileLogHandler.cs.