lets say i wanna log an object Mycustomer using Nlog.
i wanna have something like this
logger.Trace(mycustomer)
now in the configuration how can i specify which property i want to print? something like:
<target name="output" xsi:type="Debugger" layout="${Name}/>
logger.Trace(mycustomer.Name)? – Paul Ruane Feb 20 '11 at 10:53