mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-06 17:58:05 +02:00
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
35 lines
971 B
C#
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
|
|
}
|
|
}
|