Okay, I'm trying to implement NLog into my project, and I've set a target:
<target name="logfile" xsi:type="File" fileName="${basedir}/logs/${shortdate}/Report/log.txt" />
This works and outputs the my test logs. However, if I change shortdate to longdate:
<target name="logfile" xsi:type="File" fileName="${basedir}/logs/${longdate}/Report/log.txt" />
Or use the ${time} attribute, I get no logs. According to their documentation, longdate and time should both be valid. Am I missing something? Are they not actually valid for fileName?
