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 Over 2 million developers have joined DZone. Join Today! Thanks for visiting DZone today,
Edit Profile Manage Email Subscriptions Moderation Admin Console How to Post to DZone Article Submission Guidelines
View Profile
Sign Out
Refcards
Trend Reports
Events
Zones
Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones AWS Cloud
by AWS Developer Relations
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones
AWS Cloud
by AWS Developer Relations

Trending

  • An Overview of Kubernetes Security Projects at KubeCon Europe 2023
  • What Is Istio Service Mesh?
  • Working on an Unfamiliar Codebase
  • Microservices Decoded: Unraveling the Benefits, Challenges, and Best Practices for APIs

Using web.config Transforms with NLog Configuration

Gunnar Peipman user avatar by
Gunnar Peipman
·
Oct. 24, 13 · Interview
Like (0)
Save
Tweet
Share
9.32K 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, DZone MVB. See the original article here.

Opinions expressed by DZone contributors are their own.

Trending

  • An Overview of Kubernetes Security Projects at KubeCon Europe 2023
  • What Is Istio Service Mesh?
  • Working on an Unfamiliar Codebase
  • Microservices Decoded: Unraveling the Benefits, Challenges, and Best Practices for APIs

Comments

Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

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

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com

Let's be friends: