From d44f4f108fd0ed50ab0852fd5f5d5895ff010ca3 Mon Sep 17 00:00:00 2001 From: lhiven <236881222@qq.com> Date: Sat, 11 Nov 2023 09:04:52 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=BB=E6=8E=89=E4=B8=93=E9=97=A8=E5=92=8C?= =?UTF-8?q?=E4=B8=AD=E6=8E=A7=E9=80=9A=E4=BF=A1=E7=9A=84=E6=97=A5=E5=BF=97?= =?UTF-8?q?=E8=AE=B0=E5=BD=95=E5=99=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Rs.Framework/LogHelper.cs | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/Rs.Framework/LogHelper.cs b/Rs.Framework/LogHelper.cs index c63175b..3f939d7 100644 --- a/Rs.Framework/LogHelper.cs +++ b/Rs.Framework/LogHelper.cs @@ -14,7 +14,6 @@ namespace Rs.Framework private static readonly ILog logingo = LogManager.GetLogger("Info"); private static readonly ILog logwarning = LogManager.GetLogger("Warning"); private static readonly ILog logmove = LogManager.GetLogger("Move"); - private static readonly ILog logTestCenter = LogManager.GetLogger("TestCenter"); public static void Error(string content) { logerror.Error(content);} @@ -70,20 +69,5 @@ namespace Rs.Framework logmove.Info(content, ex); } } - - public static void TestCenterLog(string content) - { - if (logTestCenter.IsInfoEnabled) - { - logTestCenter.Info(content); - } - } - public static void TestCenterLog(string content, Exception ex) - { - if (logTestCenter.IsInfoEnabled) - { - logTestCenter.Info(content, ex); - } - } } }