ProcessModelSection.LogLevel Property

Definition

Gets or sets a value indicating the event types to be logged to the event log.

public:
 property System::Web::Configuration::ProcessModelLogLevel LogLevel { System::Web::Configuration::ProcessModelLogLevel get(); void set(System::Web::Configuration::ProcessModelLogLevel value); };
[System.Configuration.ConfigurationProperty("logLevel", DefaultValue=System.Web.Configuration.ProcessModelLogLevel.Errors)]
public System.Web.Configuration.ProcessModelLogLevel LogLevel { get; set; }
[<System.Configuration.ConfigurationProperty("logLevel", DefaultValue=System.Web.Configuration.ProcessModelLogLevel.Errors)>]
member this.LogLevel : System.Web.Configuration.ProcessModelLogLevel with get, set
Public Property LogLevel As ProcessModelLogLevel

Property Value

One of the ProcessModelLogLevel values. The default value is Errors.

Attributes

Examples

The following code example shows how to access the LogLevel property.


// Get the current LogLevel property value.
ProcessModelLogLevel comLogLevel = 
    processModelSection.LogLevel;

// Set the LogLevel property to ProcessModelLogLevel.All.
processModelSection.LogLevel = ProcessModelLogLevel.All;
' Get the current LogLevel property value.
   Dim comLogLevel As ProcessModelLogLevel = _
   processModelSection.LogLevel

' Set the LogLevel property to ProcessModelLogLevel.All.
processModelSection.LogLevel = ProcessModelLogLevel.All

Remarks

By using this property correctly, you can filter the errors the system can log. After you have an idea of the application's malfunctions or bottlenecks, you might want to devise a strategy that narrows the range of errors you are interested in.

Applies to

See also