LogHelper.cs 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Linq;
  5. using System.Threading;
  6. using Library;
  7. using LitJson;
  8. using MySystem;
  9. public class LogHelper
  10. {
  11. public readonly static LogHelper Instance = new LogHelper();
  12. private LogHelper()
  13. { }
  14. string[] BlackList = { "好哒查询商户审核状态", "好哒查询实名认证状态", "好哒分账交易详情查询", "间连商户开户意愿确认(提交申请单)查询申请单状态-请求参数", "查询支付宝商家认证申请单状态", "查询支付宝商户意愿申请状态", "获取微信商户开户意愿确认状态", "获取支付宝商家认证状态" };
  15. public void WriteLog(string Content, string FileName, bool sls = false)
  16. {
  17. if(BlackList.Contains(FileName) && Library.ConfigurationManager.EnvironmentFlag == 2)
  18. {
  19. string key = function.MD532(Content + FileName);
  20. if(!string.IsNullOrEmpty(RedisDbconn.Instance.Get<string>(key)))
  21. {
  22. return;
  23. }
  24. RedisDbconn.Instance.Set(key, "1");
  25. RedisDbconn.Instance.SetExpire(key, 600);
  26. }
  27. function.WriteLog(Content, FileName);
  28. if(sls)
  29. {
  30. Dictionary<string, string> dic = new Dictionary<string, string>();
  31. dic.Add("Topic", FileName);
  32. dic.Add("Content", Content);
  33. KxsRedisDbconn.Instance.AddList("SlsLogQueue", Newtonsoft.Json.JsonConvert.SerializeObject(dic));
  34. }
  35. }
  36. public void Start()
  37. {
  38. Thread th = new Thread(DoWorks);
  39. th.IsBackground = true;
  40. th.Start();
  41. }
  42. public void DoWorks()
  43. {
  44. while (true)
  45. {
  46. string content = RedisDbconn.Instance.RPop<string>("LogQueue");
  47. if (!string.IsNullOrEmpty(content))
  48. {
  49. try
  50. {
  51. DoQueue(content);
  52. }
  53. catch (Exception ex)
  54. {
  55. LogHelper.Instance.WriteLog(DateTime.Now.ToString() + "\n" + content + "\n" + ex, "SLS日志异常");
  56. }
  57. }
  58. else
  59. {
  60. Thread.Sleep(5000);
  61. }
  62. }
  63. }
  64. public void DoQueue(string content)
  65. {
  66. // JsonData JsonObj = JsonMapper.ToObject(content);
  67. // string Topic = JsonObj["Topic"].ToString();
  68. // string Cont = JsonObj["Content"].ToString();
  69. // string BrandId = JsonObj["BrandId"].ToString();
  70. // SLS.WriteLog(DateTime.Now, Topic, Cont, new Dictionary<string, string>()
  71. // {
  72. // {"BrandId", BrandId}
  73. // });
  74. }
  75. }