<!--
Logging
-->
<!-- Log root -->
<key>LogRoot</key>
<string>/var/log/caldavd</string>
<!-- Apache-style access log -->
<key>AccessLogFile</key>
<string>access.log</string>
<key>RotateAccessLog</key>
<true/>
<!-- Server activity log -->
<key>ErrorLogFile</key>
<string>error.log</string>
<!-- Log levels -->
<key>DefaultLogLevel</key>
<string>warn</string> <!-- debug, info, warn, error -->
<!-- Allows overriding log levels on a per-package, per-module, or even per-
class basis -->
<key>LogLevels</key>
<dict>
<key>twistedcaldav.memcachepool</key>
<string>info</string>
<key>twistedcaldav.memcacher</key>
<string>info</string>
<key>twext.enterprise.adbapi2</key>
<string>info</string>
</dict>
The LogLevels block was a workaround attempt.
Axel