ProcessModelSection.LogLevel Propriedade
Definição
Obtém ou define um valor que indica os tipos de evento a serem registrados no log de eventos.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=Mono.Cecil.CustomAttributeArgument)]
public System.Web.Configuration.ProcessModelLogLevel LogLevel { get; set; }
[<System.Configuration.ConfigurationProperty("logLevel", DefaultValue=Mono.Cecil.CustomAttributeArgument)>]
member this.LogLevel : System.Web.Configuration.ProcessModelLogLevel with get, set
Public Property LogLevel As ProcessModelLogLevel
Valor da propriedade
Um dos valores de ProcessModelLogLevel.One of the ProcessModelLogLevel values. O valor padrão é Errors.The default value is Errors.
- Atributos
Exemplos
O exemplo de código a seguir mostra como acessar a LogLevel propriedade.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
Comentários
Ao usar essa propriedade corretamente, você pode filtrar os erros que o sistema pode registrar.By using this property correctly, you can filter the errors the system can log. Depois de ter uma ideia dos problemas ou afunilamentos do aplicativo, talvez você queira planejar uma estratégia que restrinja o intervalo de erros em que você está interessado.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.