Enterprise Library 3.1 Logging Formatter Template - Include URL Request

∥☆過路亽.° 提交于 2019-12-02 02:44:59

问题


We have a custom web app built using Ektron v8.0 which uses EL 3.1 and the format template in the logging config is configured as such:

<add
      name="Text Formatter"
      type="Microsoft.Practices.EnterpriseLibrary.Logging.Formatters.TextFormatter, Microsoft.Practices.EnterpriseLibrary.Logging"
      template="Timestamp: {timestamp}
Message: {message}
Category: {category}
Priority: {priority}
EventId: {eventid}
Severity: {severity}
Title:{title}
Extended Properties: {dictionary({key} - {value}
)}"
                />

Is there a template item for Request URL? Without the request url with querystring parameters, it's difficult to debug errors.


回答1:


There is no template item specifically for the request URL. You can add the request URL to the extended properties yourself so that the information is logged:

string requestUrl = System.Web.HttpContext.Current.Request.Url.AbsoluteUri;

Dictionary<string, object> dictionary = new Dictionary<string, object>();
dictionary.Add("RequestUrl", requestUrl);

Logger.Write("My message", dictionary);

Since the formatter is logging all dictionary key/values your RequestUrl will show up in the log.

An alternative approach would be to create your own IExtraInformationProvider to populate the specific web information you are interested in. It's really the same thing except using an Enterprise Library interface.

public class WebContextInformationProvider : IExtraInformationProvider
{
    public void PopulateDictionary(IDictionary<string, object> dict)
    {
        dict["RequestUrl"] = System.Web.HttpContext.Current.Request.Url.AbsoluteUri;
    }
}

Dictionary<string, object> dictionary = new Dictionary<string, object>();
WebContextInformationProvider webContext = new WebContextInformationProvider();

webContext.PopulateDictionary(dictionary);

Logger.Write("My message", dictionary);


来源:https://stackoverflow.com/questions/4946311/enterprise-library-3-1-logging-formatter-template-include-url-request

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!