RollingFileLogAppender Class
Log appender that writes log messages to a rolling file.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECore assembly)
Syntax
public class RollingFileLogAppender : LogAppender
Remarks
This class represents a log file this is rolled based on size. It is configured with the number of rolling files to use and the maximum size they can reach before the files are rolled.
The rolling files that are not being written to will be numbered from one to the value of FileCount minus one where the file with the lowest number contains the more recent log messages.
FileName | FileCount | Rolling files |
---|---|---|
"C:/temp/logs/mylog.txt" | 1 | "C:/temp/logs/mylog.txt" |
"C:/temp/logs/mylog.txt" | 2 |
"C:/temp/logs/mylog.txt" |
"C:/temp/logs/mylog.txt" | 4 |
"C:/temp/logs/mylog.txt" |
Example
// Create a RollingFileLogAppender that alternates between two log files
public static LogAppender CreateRollingFileLogAppender(string fileName)
{
// The following appender alternates between two 1MB files
return new RollingFileLogAppender(fileName, 2, 1024 * 1024);
}
Inheritance Hierarchy
System.Object (not available in C#)
EngineObject
LogAppender
RollingFileLogAppender
Platforms
Windows, Linux, Android
RollingFileLogAppender Members
The RollingFileLogAppender type has the following members.
Constructors
Name | Description |
---|---|
RollingFileLogAppender | Initializes a new instance of the RollingFileLogAppender class. |
Properties
Name | Description |
---|---|
FileCount | Gets the number of rolling log files. |
FileName | Gets the full path of the file that is used as the base path and name for the rolling log files. |
IsDisposed | Gets a value that tells whether the current RollingFileLogAppender has been disposed. Inherited from EngineObject |
MaximumFileSize | Gets maximum size of the log files in bytes. |
NativeHandle | Gets the native Carmenta Engine kernel object the current RollingFileLogAppender represents. Inherited from EngineObject |
Methods
Name | Description |
---|---|
Clone | Creates a copy of an object. Inherited from EngineObject |
Dispose | Releases the reference to the native Carmenta Engine kernel instance the EngineObject represents. Inherited from EngineObject |
Equals | Determines whether this instance is equal to another. Inherited from EngineObject |