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