PHP code example of yaxin / monolog-timefile-handler
1. Go to this page and download the library: Download yaxin/monolog-timefile-handler library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
yaxin / monolog-timefile-handler example snippets
use Monolog\Logger;
use Yaxin\TimefileHandler\TimefileHandler;
$logger = new Logger('app');
$handler = new TimefileHandler('/tmp/app_%(Ymd_H).log', Logger::INFO);
$logger->pushHandler($handler);
$logger->warning('This is a message');