From 9fa293298c53429e8ac5148de8328933c0a80ff4 Mon Sep 17 00:00:00 2001 From: kazelee <1847801760@qq.com> Date: 星期三, 11 六月 2025 17:26:04 +0800 Subject: [PATCH] 更新容器必须检查前台是否维护的功能 --- util/LogHelper.cs | 18 +++++++++--------- 1 files changed, 9 insertions(+), 9 deletions(-) diff --git a/util/LogHelper.cs b/util/LogHelper.cs index 7221e4e..ccf4812 100644 --- a/util/LogHelper.cs +++ b/util/LogHelper.cs @@ -68,16 +68,16 @@ if (logger != null) { logger.Error($"{message}{ex.StackTrace}"); } - } - - #region 鑷畾涔夋柟娉�- public static void InfoEx(Exception ex) { - Info($"寮傚父锛歿ex.Message}"); - } - - public static void InfoApi(string taskType, object model) { - Info($"瑙﹀彂API锛歿taskType} " + JsonConvert.SerializeObject(model), "API"); } + + #region DIY + public static void InfoEx(Exception ex) { + Info($"鍙戠敓浜嗗紓甯革細{ex.Message}\n{ex.StackTrace}"); + } + + public static void InfoApi(string apiName, object model) { + Info($"瑙﹀彂API锛歿apiName} " + JsonConvert.SerializeObject(model), "API"); + } #endregion } -- Gitblit v1.9.1