From 2a112e09b34e07bfdae94b6c1311e699d184679f Mon Sep 17 00:00:00 2001 From: ZGGSONG Date: Tue, 21 Dec 2021 15:34:09 +0800 Subject: [PATCH] add logger --- .../TRI_TCP_Client/Log/LoggerEnum.cs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 TRI_TCP_Client/TRI_TCP_Client/Log/LoggerEnum.cs diff --git a/TRI_TCP_Client/TRI_TCP_Client/Log/LoggerEnum.cs b/TRI_TCP_Client/TRI_TCP_Client/Log/LoggerEnum.cs new file mode 100644 index 0000000..56b51af --- /dev/null +++ b/TRI_TCP_Client/TRI_TCP_Client/Log/LoggerEnum.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace TRI_TCP_Client.Log +{ + public enum LogType + { + All, + Information, + Debug, + Success, + Failure, + Warning, + Error + } +}