//using System; //namespace WWPipeLine.Commons //{ // public class ShareLogService : ShareLog.ISync // { // public delegate void SendMsg(string msg, string type); // public event SendMsg SendMsgEvent; // public string SendMessage(string message, string type = "") // { // try // { // SendMsgEvent?.Invoke(message, type); // } // catch (Exception ex) // { // LogHelper.Error(ex); // } // return ""; // } // } //}