Trace.LogFileRollover Property
Gets or sets a value that indicates whether logging of Trace output will roll over to a new file, or whether it will stop when the maximum log file size that is specified in LogFileSize is reached.
Namespace: Microsoft.AnalysisServices
Assembly: Microsoft.AnalysisServices (in Microsoft.AnalysisServices.dll)
Syntax
'Declaration
Public Property LogFileRollover As Boolean
Get
Set
'Usage
Dim instance As Trace
Dim value As Boolean
value = instance.LogFileRollover
instance.LogFileRollover = value
public bool LogFileRollover { get; set; }
public:
property bool LogFileRollover {
bool get ();
void set (bool value);
}
member LogFileRollover : bool with get, set
function get LogFileRollover () : boolean
function set LogFileRollover (value : boolean)
Property Value
Type: System.Boolean
true if logging of Trace output will roll over to a new file when the maximum log file size that is specified in LogFileSize is reached; false if it should stop.
Remarks
If the value of the LogFileRollover parameter is set to true, a new file is started when the size of the log file exceeds the value that is specified in the LogFileSize; otherwise, logging stops.