using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Paho.MqttDotnet { /// /// 追踪级别 /// public enum MqttTraceLevels { /// /// 最多消息 /// Maximum = 1, /// /// 中等消息 /// Medium, /// /// 最小消息 /// Minimum, /// /// 协议 /// Protocol, /// /// 错误 /// Error, /// /// 苛刻 /// Severe, /// /// 致命 /// Fatal, } }