Comment 8 for bug 287304

Revision history for this message
Stuart Bishop (stub) wrote :

There is already builtin support for logfile rotation. You just need to add options to the logfile stanzas in launchpad.conf:

<eventlog>
    <logfile>
        path launchpad.log
        old-files 9
        max-size 10000000
    </logfile>
</eventlog>

<accesslog>
    <logfile>
        path launchpad-access.log
        old-files 9
        max-size 10000000
    </logfile>
</accesslog>

Is this good enough for our needs? If so, please update the production configs and mark this bug fixed.