Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NLog throws configuration exception on all aspnet layout renderers

Tags:

I have been working to set up NLog v2 on my ASP.NET MVC 3 application and it has worked very well so far. (I'm using the package from the offical nuGet repository) However, when I try to change the log layout to include any of the aspnet-* layout renderers, I get a configuration error. I've reduced the problem to the following minimum use case:

In the configSections block:

<section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog"/> 

The Nlog block:

<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" throwExceptions="true">  <variable name="logDirectory" value="C:\Logs" /> <targets>   <target name="logFile" xsi:type="File" fileName="${logDirectory}\app.log"       layout="${aspnet-user-identity}" /> </targets>         <rules>   <logger name="*" minlevel="Info" writeTo="logfile" /> </rules> 

If I change layout use any combination of renderers that are not part of the aspnet* family, this works well (I haven't tested every one, but I've looked at quite a few). The error I get is here:

Configuration Error  Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.   Parser Error Message: An error occurred creating the configuration section handler for nlog: Exception occurred when loading configuration from C:\..[snip]..\web.config  Source Error:    Line 16: </configSections> Line 17:  Line 18:   <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" Line 19:     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" throwExceptions="true"> Line 20:  

I have really no idea what's going on. I'm not sure what about that renderer causes the configuration to become invalid. I've been banging around at it most of the day and have gotten nowhere, so I'm hoping someone here can help.

Thank you!

like image 649
Jacob Avatar asked Jun 10 '11 03:06

Jacob


1 Answers

Make sure you have referenced the NLog.Extended assembly which is where those layouts are defined and which must have been added by the NuGet package as well to the references:

<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"        throwExceptions="true">      <extensions>         <add assembly="NLog.Extended" />     </extensions>      <variable name="logDirectory" value="C:\Logs" />      <targets>         <target name="logFile"                  xsi:type="File"                  fileName="${logDirectory}\app.log"                 layout="${aspnet-user-identity} ${message}" />     </targets>      <rules>         <logger name="*" minlevel="Debug" writeTo="logfile" />     </rules>  </nlog> 
like image 53
Darin Dimitrov Avatar answered Sep 26 '22 16:09

Darin Dimitrov