Tridion 2011 centralizes all logging configuration in the logback.xml file. How do I configure the verbose logging of link resolving in Tridion 2011?
I do not think this is it, since it uses the DeployerLog. Am I missing something?
<logger name="com.tridion.tcdl">
<appender-ref ref="rollingDeployerLog"/>
</logger>
I think the linking info will - by default - appear in the cd_core.log, since this seems to be a "catch-all" log for all com.tridion.* classes.
You can add a log explicitly for linking as follows:
Create a linking-only appender:
Then bind the linking classes to this appender:
if you want to use a different log level for this specific log file, then change it in the logger element.