|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace THUploadOss
- {
- internal class Logger
- {
- private static readonly log4net.ILog loginfo = log4net.LogManager.GetLogger("loginfo");
- private static readonly log4net.ILog logerror = log4net.LogManager.GetLogger("logerror");
-
- public static void WriteInfo(string info)
- {
- Console.WriteLine(info);
- if (loginfo.IsInfoEnabled)
- {
- loginfo.Info(info);
- }
- }
-
- public static void WriteError(string error)
- {
- Console.WriteLine(error);
- if (logerror.IsErrorEnabled)
- {
- logerror.Error(error);
- }
- }
-
- public static void WriteError(string info, Exception ex)
- {
- Console.WriteLine(info);
- if (logerror.IsErrorEnabled)
- {
- logerror.Error(info, ex);
- }
- }
- }
- }
|