namespace IStation.Application { /// /// /// public class AnalysisLog { private static readonly string _custom_log = "Analysis"; /// /// 写入信息日志 /// /// public static void Info(string info) { Yw.LogHelper.Custom(_custom_log, info); } } }