Hi!
I've faced with a same problem using NLog v.2.
Check that you've added to your app:
Growl.Connector.dll
Growl.CoreLibrary.dll
NLog.Targets.GrowlNotify.dll
The latest one - NLog.Targets.GrowlNotify.dll - is not included in
https://github.com/RyanFarley/NLogGrowlNotify/zipball/masterSo I builded it from Jarek's sources :)
And in a NLog.config I wrote:
<?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"> <extensions>
<add assembly="NLog.Targets.GrowlNotify" />
</extensions>
<targets>
<target name="growl"
xsi:type="GrowlNotify"
host="localhost"/>
</targets>
<rules>
<logger name="GrowlLogs" minlevel="Trace" writeTo="growl" />
</rules>
</nlog>
By the way, this:
<targets>
<target name="growl"
type="GrowlNotify"
host="localhost"/>
</targets>
works for me too.