第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

在日志中顯示實(shí)際方法名稱

在日志中顯示實(shí)際方法名稱

C#
GCT1015 2023-07-22 16:22:18
我一直在 .net core webapi 項(xiàng)目中使用 Serilog,并且能夠愉快地使用它。但是,我想在信息日志中包含方法名稱的示例 - 使用 SourceContext 訪問(wèn)類名稱是可以的。然而,根據(jù)網(wǎng)上的各種建議/指南,我添加了一個(gè)豐富器,但每次的結(jié)果都是實(shí)際的豐富方法??偨Y(jié)一下我的知識(shí),我主要來(lái)自 .net 3.5 及以下背景,因此目前除此之外的所有內(nèi)容都是非常陡峭的學(xué)習(xí)曲線。請(qǐng)溫柔點(diǎn):-)我都嘗試過(guò):logEvent.AddOrUpdateProperty(new LogEventProperty("MethodName", new ScalarValue(System.Reflection.MethodBase.GetCurrentMethod().Name)));和logEvent.AddOrUpdateProperty(new LogEventProperty("MethodName", new ScalarValue(GetActualAsyncMethodName())));
查看完整描述

2 回答

?
藍(lán)山帝景

TA貢獻(xiàn)1843條經(jīng)驗(yàn) 獲得超7個(gè)贊

最后,我通過(guò)添加操作過(guò)濾器并向 Serilog 的 LogContext 添加屬性來(lái)修復(fù)此問(wèn)題,如下所示:


    public class LoggingPropertiesFilter : IActionFilter

    {

        public void OnActionExecuting(ActionExecutingContext context)

        {

            // Do something before the action executes.

            ControllerBase controllerBase = context.Controller as ControllerBase;

            if(controllerBase != null)

            {

                var routeAction = controllerBase.RouteData.Values["action"];


                LogContext.PushProperty("method", routeAction);


            }

        }


        public void OnActionExecuted(ActionExecutedContext context)

        {

            // Do something after the action executes.

        }

    }

到目前為止,我遇到的唯一問(wèn)題是我必須手動(dòng)為每個(gè)操作附加一個(gè)屬性才能使其工作,但這確實(shí)解決了我遇到的最初問(wèn)題(如果它對(duì)任何人都有用的話)。


查看完整回答
反對(duì) 回復(fù) 2023-07-22
?
弒天下

TA貢獻(xiàn)1818條經(jīng)驗(yàn) 獲得超8個(gè)贊

嘗試在操作中使用以下代碼:


var methodname = ControllerContext.ActionDescriptor.ActionName;


查看完整回答
反對(duì) 回復(fù) 2023-07-22
  • 2 回答
  • 0 關(guān)注
  • 159 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)