Browse Source

日志存到SLS

lcl 1 day ago
parent
commit
db755544ce
1 changed files with 5 additions and 6 deletions
  1. 5 6
      AppStart/LogHelper.cs

+ 5 - 6
AppStart/LogHelper.cs

@@ -15,7 +15,7 @@ public class LogHelper
 
     string[] BlackList = { "服务商平台查询申请单状态API", "服务商平台查询分账结果API", "查询签约申请的结果", "支付宝查询分账结果" };
 
-    public void WriteLog(string Content, string FileName, string BrandId = "0")
+    public void WriteLog(string Content, string FileName)
     {
         if(BlackList.Contains(FileName))
         {
@@ -28,11 +28,10 @@ public class LogHelper
             RedisDbconn.Instance.SetExpire(key, 3600);
         }
         function.WriteLog(Content, FileName);
-        // Dictionary<string, string> dic = new Dictionary<string, string>();
-        // dic.Add("Topic", FileName);
-        // dic.Add("Content", Content);
-        // dic.Add("BrandId", BrandId);
-        // RedisDbconn.Instance.AddList("LogQueue", Newtonsoft.Json.JsonConvert.SerializeObject(dic));
+        Dictionary<string, string> dic = new Dictionary<string, string>();
+        dic.Add("Topic", FileName);
+        dic.Add("Content", Content);
+        RedisDbconn.Instance.AddList("SlsLogQueue", Newtonsoft.Json.JsonConvert.SerializeObject(dic));
     }
 
     public void Start()