Open.Core.LogCss.SeverityClass C# (CSharp) Method

SeverityClass() public static method

Retrieves a CSS class for the given severity level.
public static SeverityClass ( LogSeverity severity ) : string
severity LogSeverity The severity of the log message.
return string
        public static string SeverityClass(LogSeverity severity)
        {
            return string.Format("{0}_{1}", RootClass, severity.ToString());
        }
    }