DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • Designing Java Web Services That Recover From Failure Instead of Breaking Under Load
  • Cookies Revisited: A Networking Solution for Third-Party Cookies
  • Using Event-Driven Ansible to Monitor Your Web Application
  • The Blue Elephant in the Room: Why PHP Should Not Be Ignored Now or Ever

Trending

  • VL-JEPA: End of LLMs? Or the End of How We Think About Them?
  • A Zero-Trust Implementation Framework for Cloud Migrations: Lessons From Enterprise Deployments
  • Practical QA Workflow Showing How Teams Integrate LLM Testing into Real CI/CD Pipelines
  • Why AI Testing Needs Confidence Scores, Not Just Pass/Fail Results

Using web.config Transforms with NLog Configuration

By 
Gunnar Peipman user avatar
Gunnar Peipman
·
Oct. 24, 13 · Interview
Likes (0)
Comment
Save
Tweet
Share
10.4K Views

Join the DZone community and get the full member experience.

Join For Free

I’m building a web based hybrid system that can run on-premises and on cloud. On development machine I want NLog to write logs on disk. When system is deployed to cloud I want NLog to write logs to Windows Azure Table storage. In this posting I will show you how to use web.config transforms with NLog configuration.

For NLog running under web application the first place to look for configuration is web.config file. Starting from Visual Studio 2010 web.config files have support for transforms so you have root web.config and then child configuration files that inherit all settings in root. Those child configuration files may define transforms that modify settings inherited from root file. We are using this mechanism in this hybrid system.

NLog configuration

As with other custom configurations we need configuration section definition in web.config for NLog:

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

After configuration sections definition we add configuration block for NLog:

<nlog
    autoReload=“true“

    throwExceptions=“true“>

  <variable name=“appName“ value=“YourAppName“ />

 

  <extensions>

    <add assembly=“Minirent.SaaS.Azure“ />

  </extensions>

  <targets async=“true“>

    <target type=“File“

            name=“default“

            layout=“${longdate} – ${level:uppercase=true}: ${message}${onexception:${newline}EXCEPTION\: ${exception:format=ToString}}“

            fileName=“${basedir}\logs\\Debug.${shortdate}.log“

            keepFileOpen=“false“

            archiveFileName=“${basedir}\logs\\Debug_${shortdate}.{##}.log“

            archiveNumbering=“Sequence“

            archiveEvery=“Day“

            maxArchiveFiles=“30“

          />

  </targets>

  <rules>

    <logger name=“*“ writeTo=“default“ minlevel=“Info“ />

  </rules>

</nlog>

NB! Don’t use xmlns and other namespace declarations for NLog. If you use then during transformation something gets messed up and all attributes with no namespace prefix get automatically generated prefix. It may be okay for transformation engine but it is not for NLog that is not able to understand XML like this.

By default, as you can see, I’m using file logger. It works also on cloud but these logs will be lost when Windows Azure replaces virtual machine where system is deployed.

Adding configuration for cloud

For Windows Azure we are using NLog target that writes log entries to Windows Azure Table Storage. This way we can use multiple instances of virtual machines and we can be sure that logs are not deleted when virtual machine is replaced.

For Windows Azure we use release config. This is child configuration file called. Web.Release.config. In this file we replace the whole NLog configuration block with Windows Azure one.

<nlog

    autoReload=“true“

    throwExceptions=“true“ xdt:Transform=“Replace“>

 

  <variable name=“appName“ value=“YourAppName“ />

 

  <extensions>

    <add assembly=“Minirent.SaaS.Azure“ />

  </extensions>

  <targets async=“true“>

    <target type=“AzureStorage“ name=“azure“ tableStorageConnectionStringName=“StorageConnectionString“ />

  </targets>

  <rules>

    <logger name=“*“ writeTo=“azure“ minlevel=“Info“ />

  </rules>

</nlog>

You can see here Replace-transform used (xdt:Transform attribute of root node). When we make deployment to Windows Azure then release configuration is used and original NLog block in web.config is replaced by one shown here.

Related Posts

  • Visual Studio add-in: CopySourceAsHTML
  • ASP.NET MVC 4: Display modes
  • ASP.NET Web API: How content negotiation works?
  • Deploying ASP.NET MVC 3 web application to server where ASP.NET MVC 3 is not installed
  • ASP.NET Web API: Query string based content formatting

The post Using web.config transforms with NLog configuration appeared first on Gunnar Peipman - Programming Blog.

Web application ASP.NET MVC

Published at DZone with permission of Gunnar Peipman. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Designing Java Web Services That Recover From Failure Instead of Breaking Under Load
  • Cookies Revisited: A Networking Solution for Third-Party Cookies
  • Using Event-Driven Ansible to Monitor Your Web Application
  • The Blue Elephant in the Room: Why PHP Should Not Be Ignored Now or Ever

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook