代码之家  ›  专栏  ›  技术社区  ›  David B

为ASP.NET Core 2.02配置NLOG

  •  0
  • David B  · 技术社区  · 6 年前

    我正试图让nlog在我的asp.net核心web api 2中工作,它返回json,但我想让loggin进入跟踪使用等。

    我已经按照以下设置了nlog.config

    <?xml version="1.0"?>
    <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          autoReload="true"
          internalLogLevel="Warn"
          internalLogFile="c:\temp\internal-nlog.txt">
    
      <extensions>
        <add assembly="NLog.Web.AspNetCore"/>
      </extensions>
    
      <targets>
        <target name="allfile" xsi:type="File"
                fileName="${basedir}\logs\GDStationaryNetCore\${shortdate}.log"
                encoding="utf-8"
                layout="[${longdate}][${machinename}][${level}] ${message} ${exception}" />
      </targets>
      <rules>
        <!--All logs, including from Microsoft-->
        <logger name="*" minlevel="Trace" writeTo="allfile" />
    
        <!--Skip Microsoft logs and so log only own logs-->
        <logger name="Microsoft.*" minlevel="Trace" writeTo="blackhole" final="true" />
        <logger name="*" minlevel="Trace" writeTo="ownFile-web" />
      </rules>
    </nlog>
    

    然后我将启动时的configure部分更改为如下所示。

     // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
      public void Configure(IApplicationBuilder app, IHostingEnvironment env, LoggerFactory loggerFactory)
      {
                if (env.IsDevelopment())
                {
                    app.UseDeveloperExceptionPage();
                }
                env.ConfigureNLog("nlog.config");
    
    
        // make sure Chinese chars don't fk up
        Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);
    
                //add NLog to ASP.NET Core
                loggerFactory.AddNLog();
                //add NLog.Web
                app.AddNLogWeb();
    
                //needed for non-NETSTANDARD platforms: configure nlog.config in your project root. NB: you need NLog.Web.AspNetCore package for this.         
                env.ConfigureNLog("nlog.config");
    
                app.UseMvc();
    }
    

    但是当我试图编译它时

    app.addnlogweb();被obseleet使用时改用usenlog

    但当我试图在应用程序中找到它时。不希望有人能帮忙,

    1 回复  |  直到 6 年前
        1
  •  2
  •   Alexey.Petriashev    6 年前

    addnlogweb在nlog中已过时

    见: https://github.com/NLog/NLog.Web/blob/44f29fe12569846fa784f20a34726b82ade6526b/NLog.Web.AspNetCore/AspNetExtensions.cs#L29

    使用日志:

    public static IWebHost BuildWebHost(string[] args) =>
        WebHost.CreateDefaultBuilder(args)
            .UseStartup<Startup>()
            .ConfigureLogging(logging =>
            {
                logging.ClearProviders();
                logging.SetMinimumLevel(Microsoft.Extensions.Logging.LogLevel.Trace);
            })
            .UseNLog()  // NLog: setup NLog for Dependency injection
            .Build();