I installed stackify (which works fine in another project) and cannot get it to report anything from this project. All config files/etc match exactly. Am I missing something obvious?
Config file:
<configSections>
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
<section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog" />
</configSections>
<add key="Stackify.AppName" value="[app name]" />
<add key="Stackify.Environment" value="Development" />
<add key="Stackify.ProxyServer" value="" />
<add key="Stackify.ApiKey" value="[key]" />
<nlog>
<extensions>
<add assembly="StackifyLib.nLog" />
</extensions>
<targets>
<target name="stackify" type="StackifyTarget" globalContextKeys="" mappedContextKeys="" callContextKeys="" logMethodNames="true" />
</targets>
<rules>
<logger name="*" minlevel="Debug" writeTo="stackify" />
</rules>
</nlog>
To call it (no calls work, just an example):
LogManager.GetCurrentClassLogger().Log(LogLevel.Error, ex);
As far as I can tell, it is exactly the same as the working project except it, well, doesn't work. Am I missing something?
Thanks, James