firefly-iii/app/Bootstrap/ConfigureLogging.php

64 lines
1.7 KiB
PHP
Raw Normal View History

2016-04-08 07:44:53 -05:00
<?php
/**
* ConfigureLogging.php
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
2016-04-08 07:44:53 -05:00
*/
declare(strict_types = 1);
2016-04-08 07:44:53 -05:00
namespace FireflyIII\Bootstrap;
use Illuminate\Contracts\Foundation\Application;
use Illuminate\Foundation\Bootstrap\ConfigureLogging as IlluminateConfigureLogging;
2016-04-25 11:43:09 -05:00
use Illuminate\Log\Writer;
2016-04-08 07:44:53 -05:00
/**
* Class ConfigureLogging
*
* @package FireflyIII\Bootstrap
*/
class ConfigureLogging extends IlluminateConfigureLogging
{
2016-09-15 23:40:45 -05:00
2016-04-08 07:44:53 -05:00
/**
2016-09-15 23:40:45 -05:00
* Configure the Monolog handlers for the application.
*
* @param \Illuminate\Contracts\Foundation\Application $app
* @param \Illuminate\Log\Writer $log
*
* @return void
2016-04-08 07:44:53 -05:00
*/
2016-05-20 01:57:45 -05:00
protected function configureDailyHandler(Application $app, Writer $log)
2016-04-08 07:44:53 -05:00
{
2016-09-15 23:40:45 -05:00
$config = $app->make('config');
$maxFiles = $config->get('app.log_max_files');
2016-05-20 01:57:45 -05:00
$log->useDailyFiles(
2016-09-15 23:40:45 -05:00
$app->storagePath() . '/logs/firefly-iii.log', is_null($maxFiles) ? 5 : $maxFiles,
$config->get('app.log_level', 'debug')
2016-05-20 01:57:45 -05:00
);
2016-04-08 07:44:53 -05:00
}
/**
2016-09-15 23:40:45 -05:00
* Configure the Monolog handlers for the application.
*
* @param \Illuminate\Contracts\Foundation\Application $app
* @param \Illuminate\Log\Writer $log
*
* @return void
2016-04-08 07:44:53 -05:00
*/
2016-05-20 01:57:45 -05:00
protected function configureSingleHandler(Application $app, Writer $log)
2016-04-08 07:44:53 -05:00
{
2016-09-15 23:40:45 -05:00
$log->useFiles(
$app->storagePath() . '/logs/firefly-iii.log',
$app->make('config')->get('app.log_level', 'debug')
);
2016-04-08 07:44:53 -05:00
}
2016-04-08 10:54:25 -05:00
}