From 5f6dee8df52a5ee76c44e883c3c55fbf9fd1d715 Mon Sep 17 00:00:00 2001 From: uye <99072975+ABA2396@users.noreply.github.com> Date: Mon, 3 Feb 2025 19:07:12 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20GetAsync=20catch=20=E6=9C=AA=E5=A4=84?= =?UTF-8?q?=E7=90=86=20logUri?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/MaaWpfGui/Services/Web/HttpService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MaaWpfGui/Services/Web/HttpService.cs b/src/MaaWpfGui/Services/Web/HttpService.cs index c4719997ea..a875e39e64 100755 --- a/src/MaaWpfGui/Services/Web/HttpService.cs +++ b/src/MaaWpfGui/Services/Web/HttpService.cs @@ -152,7 +152,7 @@ namespace MaaWpfGui.Services.Web } catch (Exception e) { - _logger.Error(e, "Failed to send GET request to {Uri}", uri); + _logger.Error(e, "Failed to send GET request to {Uri}", logUri ? uri : "***"); return null; } }