mirror of
https://github.com/Stone-Red-Code/DesktopMagic.git
synced 2026-09-04 00:46:12 +02:00
22 lines
450 B
C#
22 lines
450 B
C#
namespace DesktopMagic.Api;
|
|
|
|
/// <summary>
|
|
/// Specifies the severity level of a log message.
|
|
/// </summary>
|
|
public enum LogLevel
|
|
{
|
|
/// <summary>
|
|
/// Informational message for general information.
|
|
/// </summary>
|
|
Info,
|
|
|
|
/// <summary>
|
|
/// Warning message indicating a potential issue.
|
|
/// </summary>
|
|
Warning,
|
|
|
|
/// <summary>
|
|
/// Error message indicating a failure or critical issue.
|
|
/// </summary>
|
|
Error
|
|
} |