Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

LogLevel.cs

namespace Nop.Core.Domain.Logging;

/// 
/// Represents a log level
/// 
public enum LogLevel
{
    /// 
    /// Debug
    /// 
    Debug = 10,

    /// 
    /// Information
    /// 
    Information = 20,

    /// 
    /// Warning
    /// 
    Warning = 30,

    /// 
    /// Error
    /// 
    Error = 40,

    /// 
    /// Fatal
    /// 
    Fatal = 50
}