namespace Avalonia.Logging
{
///
/// Specifies the meaning and relative importance of a log event.
///
public enum LogEventLevel
{
///
/// Anything and everything you might want to know about a running block of code.
///
Verbose,
///
/// Internal system events that aren't necessarily observable from the outside.
///
Debug,
///
/// The lifeblood of operational intelligence - things happen.
///
Information,
///
/// Service is degraded or endangered.
///
Warning,
///
/// Functionality is unavailable, invariants are broken or data is lost.
///
Error,
///
/// If you have a pager, it goes off when one of these occurs.
///
Fatal
}
}