Skip to content

Commit

Permalink
Merge pull request #47 from candasm/4.1
Browse files Browse the repository at this point in the history
Update config file for logging settings
  • Loading branch information
candasm committed Mar 5, 2017
2 parents d6ca981 + fc4c0c1 commit 3dfdf45
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Laravel Elasticsearch Service Provider (4.1.1)
Laravel Elasticsearch Service Provider (4.1.2)
================================================
[![Latest Stable Version](https://poser.pugx.org/shift31/laravel-elasticsearch/v/stable)](https://packagist.org/packages/shift31/laravel-elasticsearch)
[![Total Downloads](https://poser.pugx.org/shift31/laravel-elasticsearch/downloads)](https://packagist.org/packages/shift31/laravel-elasticsearch)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

class ElasticsearchServiceProvider extends ServiceProvider
{
const VERSION = '4.1.1';
const VERSION = '4.1.2';

/**
* @inheritdoc
Expand Down
3 changes: 2 additions & 1 deletion src/config/elasticsearch.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

return [
'hosts' => ['localhost:9200'],
'logging' => false,
'logPath' => storage_path('logs/elastic-search.log'),
'logLevel' => 400,
'logLevel' => Psr\Log\LogLevel::WARNING,
];

0 comments on commit 3dfdf45

Please sign in to comment.