csharp-sdk-upm/Libs/Newtonsoft.Json.AOT/TraceLevel.cs

39 lines
884 B
C#

#if !HAVE_TRACE_WRITER
using LC.Newtonsoft.Json.Serialization;
namespace LC.Newtonsoft.Json
{
/// <summary>
/// Specifies what messages to output for the <see cref="ITraceWriter"/> class.
/// </summary>
public enum TraceLevel
{
/// <summary>
/// Output no tracing and debugging messages.
/// </summary>
Off = 0,
/// <summary>
/// Output error-handling messages.
/// </summary>
Error = 1,
/// <summary>
/// Output warnings and error-handling messages.
/// </summary>
Warning = 2,
/// <summary>
/// Output informational messages, warnings, and error-handling messages.
/// </summary>
Info = 3,
/// <summary>
/// Output all debugging and tracing messages.
/// </summary>
Verbose = 4
}
}
#endif