Add ultimate xr
This commit is contained in:
43
Assets/UltimateXR/Runtime/Scripts/Core/UxrLogLevel.cs
Normal file
43
Assets/UltimateXR/Runtime/Scripts/Core/UxrLogLevel.cs
Normal file
@@ -0,0 +1,43 @@
|
||||
// --------------------------------------------------------------------------------------------------------------------
|
||||
// <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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user