Tagged Questions
1
vote
1answer
94 views
NLog not outputing log file
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 ...
0
votes
2answers
448 views
NLog - how logging custom data to XML
Hi I need log temperature to XML file. I would like have XMl in this format
<logs>
<log>
<dateTime></dateTime/>
<value>x</dateTime/>
<log>
...
1
vote
2answers
495 views
Caliburn Micro with NLog - how to use logger and log to XML file
Hi i try use Nlog in with caliburn micro, I have use this tutorial http://buksbaum.us/2010/08/08/how-to-do-logging-with-caliburn-micro/.
Firstt I defined Nloagger class, here is it:
public class ...
3
votes
0answers
311 views
NLog Custom Target XSD Warnings
I have created a custom target for NLog and it works fine, but when I am editing the nlog.config file I get a warning that This is an invalid xsi:type ...
8
votes
1answer
2k views
Configuring NLog to log exceptions in an XML output?
Currently, we have NLog spitting out CSV files just to prove we have NLog actually logging exceptions.
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" ...
1
vote
1answer
385 views
Is there any way to do a conditional in a NLog layout?
I'm trying to create a NLog layout config like so:
layout = "${callsite} > ${message} (${exception:format=tostring})"
The output for this layout is (when I test it):
TestProject.Program.Main ...