-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathChannelLogServiceProvider.php
More file actions
65 lines (55 loc) · 1.6 KB
/
Copy pathChannelLogServiceProvider.php
File metadata and controls
65 lines (55 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
namespace Nickfan\ChannelLog;
/**
* Description
*
* @project ChannelLog
* @package ChannelLog
* @author nickfan <[email protected]>
* @link http://www.axiong.me
* @version $Id$
* @lastmodified: 2015-09-24 10:41
*
*/
use Illuminate\Support\ServiceProvider;
use Illuminate\Foundation\Application as LaravelApplication;
use Laravel\Lumen\Application as LumenApplication;
class ChannelLogServiceProvider extends ServiceProvider
{
/**
* Indicates if loading of the provider is deferred.
*
* @var bool
*/
protected $defer = false;
/**
* Bootstrap the application events.
*/
public function boot()
{
//
$source = dirname(__DIR__).'/config/channel-log.php';
if ($this->app instanceof LaravelApplication && $this->app->runningInConsole()) {
$this->publishes([$source => config_path('channel-log.php')]);
} elseif ($this->app instanceof LumenApplication) {
$this->app->configure('channel-log');
}
$this->mergeConfigFrom($source, 'channel-log');
}
/**
* Register the service provider.
*/
public function register()
{
//$configPath = __DIR__ . '/../config/lara-spec-log.php';
//$this->mergeConfigFrom($configPath, 'lara-spec-log');
$this->app->singleton('channel-log',function($app){
return new ChannelLogWriter($app['config']->get('channel-log',[
'default' => [
'path' => 'logs/default.log',
'level' => \Monolog\Logger::DEBUG,
],
]));
});
}
}