Search Results for

    Show / Hide Table of Contents

    Class LogConfigOverrides

    Inheritance
    System.Object
    LogConfigOverrides
    Inherited Members
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.ToString()
    Namespace: OpenFin.Net.Adapter.Logging
    Assembly: OpenFin.Net.Adapter.dll
    Syntax
    public class LogConfigOverrides

    Properties

    Enabled

    Gets or sets if writing to a log file is enabled.

    Declaration
    public bool? Enabled { get; set; }
    Property Value
    Type Description
    System.Nullable<System.Boolean>

    MinLevel

    Gets or sets the minimum logging level to write to the log.

    Declaration
    public LogLevel? MinLevel { get; set; }
    Property Value
    Type Description
    System.Nullable<LogLevel>

    RuntimeTraceMessages

    Gets or sets a value indicating whether runtime communication trace level message should be logged

    Declaration
    public bool? RuntimeTraceMessages { get; set; }
    Property Value
    Type Description
    System.Nullable<System.Boolean>

    true if trace level message will be logged; otherwise, false.

    TargetFile

    Gets or sets the path to the log file.

    Declaration
    public string TargetFile { get; set; }
    Property Value
    Type Description
    System.String
    Remarks

    By default, log files will occur in the subdirectory OpenFin\Logs of the user LocalAppData directory. To specify a different directory, set this property with an absolute path.

    ToConsole

    Gets or sets whether log statements should be directed to the current console.

    Declaration
    public bool? ToConsole { get; set; }
    Property Value
    Type Description
    System.Nullable<System.Boolean>
    In This Article
    Back to top Copyright OpenFin