csharpc-sharpdotnetxamlavaloniauicross-platformcross-platform-xamlavaloniaguimulti-platformuser-interfacedotnetcore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
// Copyright (c) The Perspex Project. All rights reserved.
|
|
// Licensed under the MIT license. See licence.md file in the project root for full license information.
|
|
|
|
namespace Perspex.Logging
|
|
{
|
|
/// <summary>
|
|
/// Specifies the meaning and relative importance of a log event.
|
|
/// </summary>
|
|
public enum LogEventLevel
|
|
{
|
|
/// <summary>
|
|
/// Anything and everything you might want to know about a running block of code.
|
|
/// </summary>
|
|
Verbose,
|
|
|
|
/// <summary>
|
|
/// Internal system events that aren't necessarily observable from the outside.
|
|
/// </summary>
|
|
Debug,
|
|
|
|
/// <summary>
|
|
/// The lifeblood of operational intelligence - things happen.
|
|
/// </summary>
|
|
Information,
|
|
|
|
/// <summary>
|
|
/// Service is degraded or endangered.
|
|
/// </summary>
|
|
Warning,
|
|
|
|
/// <summary>
|
|
/// Functionality is unavailable, invariants are broken or data is lost.
|
|
/// </summary>
|
|
Error,
|
|
|
|
/// <summary>
|
|
/// If you have a pager, it goes off when one of these occurs.
|
|
/// </summary>
|
|
Fatal
|
|
}
|
|
}
|
|
|