Skip to content

huangskar/NLog.Web

 
 

Repository files navigation

NLog.Web (ASP.NET & ASP.NET Core)

AppVeyor codecov.io BCH compliance

These packages are extensions to NLog.

The packages contain targets and layout-renderes specific to ASP.NET (Core), MVC and IIS.

  • Version (ASP.NET Core 1+2)
  • Version (ASP.NET)

Getting started

Updates

For updates and releases, check CHANGELOG.MD or Releases

ASP.NET Core 1 / ASP.NET Core 2

ℹ️ Missing the trace and debug logs in .NET Core 2? Check your appsettings.json

Use the NLog.Web.AspNetCore package

There is a special package for ASP.NET Core / MVC Core. This is needed because we can't detect if ASP.NET or ASP.NET Core is used. The package depends on NLog.Extensions.Logging - which integrates with the ASP.NET Core logging system.

Installation

Include in your nlog.config:

<!-- enable asp.net core layout renderers -->
<extensions>
  <add assembly="NLog.Web.AspNetCore"/>
</extensions>

ASP.NET (non-core)

Use the NLog.Web package.

Installation

Simply install the package. NLog will detect the extension automatically.

HTTP module (ASP.NET non-core)

note: not listed on https://nlog-project.org/config

There is a ASP.NET ASP.NET HttpModule that enables NLog to hook BeginRequest and EndRequest events easily.

The NLogHttpModule needs a registration in the web.config:

<system.webServer> 
	<modules runAllManagedModulesForAllRequests="true"> 
		<add name="NLog" type="NLog.Web.NLogHttpModule, NLog.Web" />
	</modules>
</system.webServer>

License

BSD

About

NLog integration for ASP.NET & ASP.NET Core 1+2

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 99.3%
  • Batchfile 0.7%