using Serilog.Events; namespace Robust.Shared.Log { /// /// The value associated with the level determines the order in which they are filtered, /// Under the default . /// public enum LogLevel { /// /// When you're *really* trying to track down that bug. /// Verbose = LogEventLevel.Verbose, /// /// Diagnostic information usually only necessary when something broke. /// Debug = LogEventLevel.Debug, /// /// General info that can confirm that something is working. /// Info = LogEventLevel.Information, /// /// Issues that can easily be worked around but should still be fixed. /// Warning = LogEventLevel.Warning, /// /// Errors that need fixing and are probably gonna break something. /// Error = LogEventLevel.Error, /// /// Errors that are REALLY BAD and break EVERYTHING. /// Fatal = LogEventLevel.Fatal } }