PHP code example of gluephp / glue-monolog

1. Go to this page and download the library: Download gluephp/glue-monolog 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/ */

    

gluephp / glue-monolog example snippets


$app = new Glue\App;

$app->config->override([
    'monolog' => [
        'folder'    => '/absolute/path/to/log/folder',
        'file'      => 'log_' . date('Ymd') . '.log',
        'level'     => 'error' // PSR-3 logging level
    ],
]);

$app->register(
    new Glue\Monolog\ServiceProvider()
);

$monolog = $app->make('Monolog\Logger');

$monolog = $app->make('Psr\Log\LoggerInterface');

$monolog = $app->log;