I have a generic class:
public class GenericClass<A>
{
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
public void Blah(A a)
{
Logger.Info("Test log");
}
}
Used with a simple NLog configuration:
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<targets>
<target name="console" xsi:type="ColoredConsole" />
</targets>
<rules>
<logger name="*" minlevel="Trace" writeTo="console" />
</rules>
</nlog>
I would like my log output to look something like:
...|INFO|NLogTests.GenericClass<System.String>|Test log
Instead, what I see is:
...|INFO|NLogTests.GenericClass`1|Test log
How can I get logger to use the fully qualified type name instead of the basic name which only displays number of generic parameters?