summaryrefslogtreecommitdiff
path: root/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/LoggingLevel.cs
blob: 0fb025dbad13b2fa6cf38d9d1df41389a061a91f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
namespace Packages.Rider.Editor
{
  public enum LoggingLevel
  {
    /// <summary>
    /// Do not use it in logging. Only in config to disable logging.
    /// </summary>
    OFF,
    /// <summary>For errors that lead to application failure</summary>
    FATAL,
    /// <summary>For errors that must be shown in Exception Browser</summary>
    ERROR,
    /// <summary>Suspicious situations but not errors</summary>
    WARN,
    /// <summary>Regular level for important events</summary>
    INFO,
    /// <summary>Additional info for debbuging</summary>
    VERBOSE,
    /// <summary>Methods &amp; callstacks tracing, more than verbose</summary>
    TRACE,
  }
}