Files
RobustToolbox/Robust.Shared/Log/LogLevel.cs
T
SilverandGitHub 25926a17b7 Renames SS14.* to Robust.* (#793)
RobustToolbox projects should be named Robust.* 

This PR changes the RobustToolbox projects from SS14.* to Robust.*

Updates SS14.* prefixes/namespaces to Robust.*
Updates SpaceStation14.sln to RobustToolbox.sln
Updates MSBUILD/SS14.* to MSBUILD/Robust.*
Updates CSProject and MSBuild references for the above
Updates git_helper.py
Removes Runserver and Runclient as they are unusable
2019-04-15 20:24:59 -06:00

35 lines
971 B
C#

namespace Robust.Shared.Log
{
/// <remarks>
/// The value associated with the level determines the order in which they are filtered,
/// Under the default <see cref="LogManager"/>.
/// </remarks>
public enum LogLevel
{
/// <summary>
/// Diagnostic information usually only necessary when something broke.
/// </summary>
Debug = 1,
/// <summary>
/// General info that can confirm that something is working.
/// </summary>
Info = 2,
/// <summary>
/// Issues that can easily be worked around but should still be fixed.
/// </summary>
Warning = 3,
/// <summary>
/// Errors that need fixing and are probably gonna break something.
/// </summary>
Error = 4,
/// <summary>
/// Errors that are REALLY BAD and break EVERYTHING.
/// </summary>
Fatal = 5
}
}