Aracılığıyla paylaş


ProcessModelSection.LogLevel Özellik

Tanım

Olay günlüğüne kaydedilecek olay türlerini belirten bir değer alır veya ayarlar.

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

Özellik Değeri

Değerlerden ProcessModelLogLevel biri. Errors varsayılan değerdir.

Öznitelikler

Örnekler

Aşağıdaki kod örneği özelliğine nasıl erişeceklerini LogLevel gösterir.


// 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

Açıklamalar

Bu özelliği doğru kullanarak, sistemin günlüğe kaydedebileceği hataları filtreleyebilirsiniz. Uygulamanın arızaları veya performans sorunları hakkında bir fikriniz olduktan sonra, ilgilendiğiniz hata aralığını daraltan bir strateji oluşturmak isteyebilirsiniz.

Şunlara uygulanır

Ayrıca bkz.