I don't know if this qualifies as an answer, but have you considered an approach where each object logs a unique id? This way you could either use NLog's filtering capability to limit the amount of logging. There is an old example here: http://nlog-forum.1685105.n2.nabble.com/Config-examples-with-filters-td1685363.html
BEGIN Copy from NLog forum:
For completeness (and in case that link goes bad), here is the example inline:
<?xml version="1.0" ?>
<nlog>
<targets>
<target name="console" type="Console" layout="${logger} ${message}" />
</targets>
<rules>
<logger name="*" minlevel="Debug" writeTo="console">
<filters>
<whenContains layout="${message}" substring="zzz" action="Ignore" />
</filters>
</logger>
</rules>
</nlog>
This sample code:
using NLog;
using NLog.Targets;
using NLog.Targets.Wrappers;
class Example
{
static void Main(string[] args)
{
Logger logger = LogManager.GetLogger("Example");
logger.Debug("log message");
logger.Debug("log zzz message");
}
}
produces only "Example log message" (the second log message is filtered out by the
Alternatively you could use the new feature called Conditions (available in the latest snapshots) which let you write filters using a simple notation:
<filters>
<when condition="contains(message,'zzz')
or level >= LogLevel.Warn
or level == LogLevel.Trace" action="Ingore" />
</filters>
END Copy from NLog forum
This does not directly answer your question (which I think is to execute certain logging statements, regardless of the configured log level and regardless of the logging method (Info, Debug, etc) used). I suspect that it would be difficult to override/work around NLog's built in log level enabling.
If NLog's filtering does give you the desired results, how about logging to a database? You could log everything, tagging certain objects' logging statements with a unique id. Then you could use the database's filtering/grouping/sorting capability to view only those logging statements for certain objects.
Good luck!