// -------------------------------------------------------------------------------------------------------------------- // // Copyright (c) VRMADA, All rights reserved. // // -------------------------------------------------------------------------------------------------------------------- namespace UltimateXR.Core { /// /// Enumerates the different log levels /// public enum UxrLogLevel { /// /// No logging. /// None = 0, /// /// Only log errors. /// Errors = 1, /// /// Like plus warnings. /// Warnings = 2, /// /// Like plus relevant information. /// Relevant = 3, /// /// All loggable information, except for /// Verbose = 4, /// /// All loggable information /// Debug = 5 } }