From 61c5caa62aaeeca85eb370a8319c5ad82c6e751f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=94=90=E7=AB=8B=E9=91=AB?= Date: Thu, 10 Aug 2023 04:51:16 +0000 Subject: [PATCH] =?UTF-8?q?update=20handbook/docs/logging.mdx.=20AddMonito?= =?UTF-8?q?rLogging=E7=9A=84WriteFilter=E6=8F=8F=E8=BF=B0=E6=9C=89?= =?UTF-8?q?=E8=AF=AF=EF=BC=8C=E9=9C=80=E8=A6=81=E6=8B=A6=E6=88=AA=E7=9A=84?= =?UTF-8?q?=E8=BF=94=E5=9B=9Efalse=EF=BC=8C=E4=B8=8D=E9=9C=80=E8=A6=81?= =?UTF-8?q?=E6=8B=A6=E6=88=AA=E7=9A=84=E8=BF=94=E5=9B=9Etrue?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 唐立鑫 --- handbook/docs/logging.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handbook/docs/logging.mdx b/handbook/docs/logging.mdx index 206b77586c..0e3bf7a9e8 100644 --- a/handbook/docs/logging.mdx +++ b/handbook/docs/logging.mdx @@ -1620,7 +1620,7 @@ services.AddMonitorLogging(options => // 获取控制器/操作描述器 var controllerActionDescriptor = context.ActionDescriptor as ControllerActionDescriptor; - // 你的逻辑....,不需要拦截返回 false,否则 true + // 你的逻辑....,需要拦截返回 false,否则 true return true; }; -- Gitee