/// <summary> /// 功能:测试日志 /// </summary> public static FeedBackResponse <string> TestLog() { FeedBackResponse <string> fbrReturn = new FeedBackResponse <string>(); SysLogHelper.LogMessage("LogServiceHelper.TestLog", "Test log data!", LogLevel.Information); SysLogHelper.LogServiceMessage("LogServiceHelper.TestLog", "Test log data!", LogLevel.Information); fbrReturn.ResultData = "ok"; return(fbrReturn); }
public void LogServiceMessage() { SysLogHelper.LogServiceMessage("test01", "sdfsdf01"); }