From fd6e40514f10de7d1ce184e79f7e9c78481a50a7 Mon Sep 17 00:00:00 2001 From: H Vs Date: Thu, 30 Nov 2023 20:55:02 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HealthMonitor.Service/Biz/db/TDengineService.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/HealthMonitor.Service/Biz/db/TDengineService.cs b/HealthMonitor.Service/Biz/db/TDengineService.cs index 043e537..0949398 100644 --- a/HealthMonitor.Service/Biz/db/TDengineService.cs +++ b/HealthMonitor.Service/Biz/db/TDengineService.cs @@ -351,6 +351,7 @@ namespace HealthMonitor.Service.Biz.db { new KeyValuePair("Authorization", "Basic " + _configTDengineService.Token) }; + _logger.LogInformation($"{nameof(ExecuteSelectRestResponseAsync)} --- SQL 语句执行 {sql}"); var result = await _httpHelper.HttpToPostAsync(url, sql, headers).ConfigureAwait(false); return result; }