43 lines
1.2 KiB
C#
43 lines
1.2 KiB
C#
// --------------------------------------------------------------------------------------------------------------------
|
|
// <copyright file="UxrLogLevel.cs" company="VRMADA">
|
|
// Copyright (c) VRMADA, All rights reserved.
|
|
// </copyright>
|
|
// --------------------------------------------------------------------------------------------------------------------
|
|
namespace UltimateXR.Core
|
|
{
|
|
/// <summary>
|
|
/// Enumerates the different log levels
|
|
/// </summary>
|
|
public enum UxrLogLevel
|
|
{
|
|
/// <summary>
|
|
/// No logging.
|
|
/// </summary>
|
|
None = 0,
|
|
|
|
/// <summary>
|
|
/// Only log errors.
|
|
/// </summary>
|
|
Errors = 1,
|
|
|
|
/// <summary>
|
|
/// Like <see cref="Errors" /> plus warnings.
|
|
/// </summary>
|
|
Warnings = 2,
|
|
|
|
/// <summary>
|
|
/// Like <see cref="Warnings" /> plus relevant information.
|
|
/// </summary>
|
|
Relevant = 3,
|
|
|
|
/// <summary>
|
|
/// All loggable information, except for <see cref="Debug"/>
|
|
/// </summary>
|
|
Verbose = 4,
|
|
|
|
/// <summary>
|
|
/// All loggable information
|
|
/// </summary>
|
|
Debug = 5
|
|
}
|
|
} |