Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using NLog to log my stuff. I'm trying to send the output to the console (or colouredconsole) ... which i'm hoping would goto the visual studio 'OUTPUT' window for any ASP.NET web site/app/mvc app.

It's not.

If i change the target to 'file' then it works for sure.

So - can NLog output to the 'output' window for web apps?

PS. Please do not post suggesting to use other progs, like log4net, etc.

cheers!

share|improve this question

2 Answers

up vote 33 down vote accepted

You can use this configuration file (nlog.config in the app path):

<?xml version="1.0" encoding="utf-8" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

  <targets>
        <target name="debugger" xsi:type="Debugger" layout="${logger}::${message}"/>
  </targets>

  <rules>
    <logger name="*" minlevel="Trace" writeTo="debugger" />
  </rules>
</nlog>

-Scott

share|improve this answer
AWESOMESAUCE! i never knew there was a type == Debugger. WINNAH! – Pure.Krome Nov 5 '08 at 0:29
Just what I was looking for, thanks! – tpower May 18 '10 at 11:06
Perfect, thanks! – Lasse Christiansen - sw_lasse Oct 23 '11 at 19:50

I use this class for output to VS debugger output window:
http://www.u2u.info/Blogs/Kris/Lists/Posts/Post.aspx?ID=11
but don't know if it will work with nlog (it will if it uses TextWriter for output), you can give it a try!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.