theorchard / monolog-cascade

Configure multiple loggers and handlers in the blink of an eye
MIT License
145 stars 62 forks source link

Log Rotate #66

Closed nomadicjosh closed 8 years ago

nomadicjosh commented 8 years ago

Does it support rotating file? If so, what is the configuration structure enable and set $maxFiles?

nomadicjosh commented 8 years ago

Never mind, I think I figured it out.

<?php
       'alert_file_handler' => array(
            'class' => 'Monolog\Handler\RotatingFileHandler',
            'level' => 'ALERT',
            'formatter' => 'spaced',
            'maxFiles' => 10,
            'filename' => APP_PATH.'tmp'.DS.'logs'.DS.'etsis-alert.txt'
        )
rantonmattei commented 8 years ago

👍