Add current user to NLog output

The WindowsIdentityLayoutRenderer should probably give you what you want. You can choose to log either the Domain, the UserName, or both.

You would configure it something like this (untested) to your NLog.config file:

<targets>
    <target name="file" xsi:type="File" 
        layout="${longdate} | ${level} | ${logger} | ${windows-identity} | ${message}"
        fileName="${basedir}/${shortdate}.log" />
</targets>

This might not work in a low privilege environment.

How do you get the user name now? If you get it something like this:

HttpContext.Current.User.Identity.Name

Then you can use NLog's "aspnet-user-identity" LayoutRenderer, something like this:

<targets>
    <target name="file" xsi:type="File" 
        layout="${longdate} | ${level} | ${logger} | ${aspnet-user-identity} | ${message}"
        fileName="${basedir}/${shortdate}.log" />
</targets>

NLog's aspnet* LayoutRenderers are in NLog.Extended.sll, so you will need that dll in addition to NLog.dll.


For those using custom authentication/authorization (or can't use the windows identity for some reason) and are using .NET core (3.*) you can use the MappedDiagnosticsContext to inject custom key-values.

As soon as you know the identity of the user you can set it like so:

using NLog;
//...
MappedDiagnosticsContext.Set("UserName", "Some user name");

Always make sure you do this in a Scoped manner (using .NET core Dependency Injection terms, or a Per Request Scope), since you don't want to mix up users when logging.

In your NLog config you can then read the value by using this syntax ${mdc:UserName}.

I'm using the following nuget packages:

  • nlog
  • nlog.web.aspnetcore

Tags:

C#

Nlog