I have the following NLog.config in my web application but how/when does the dialog open up and show the information or do I need to start it and navigate to a specific catalog or something?
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.netfx35.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<targets>
<target xsi:type="ColoredConsole"
name="Debug"
layout="${message} ${exception}">
<highlight-row backgroundColor="Black"
foregroundColor="DarkCyan"
condition="true"/>
</target>
</targets>
<rules>
<logger name="Raven.Client.*" writeTo="Debug"/>
</rules>
</nlog>
NLog will not open a dialog where it will dump its messages, you’ll basically lose all the data it logs. At least that is my understanding; the Console and ColoredConsole are only useful for console apps. Your best bet is to have the output go into a file. Use something like this:
This will create a text file called log.txt in the base directory of your app and it will write all message that have a minimum level of Info (basically everything) to it. Oh, by the way, you can have multiple targets and rules working at the same time; have a look here for more info.