Browse Source

Merge branch 'master' of github.com:laravel/laravel

Taylor Otwell 4 years ago
parent
commit
99f183b5c7
2 changed files with 6 additions and 0 deletions
  1. 2 0
      .env.example
  2. 4 0
      config/logging.php

+ 2 - 0
.env.example

@@ -29,6 +29,8 @@ MAIL_PORT=2525
 MAIL_USERNAME=null
 MAIL_PASSWORD=null
 MAIL_ENCRYPTION=null
+MAIL_FROM_ADDRESS=null
+MAIL_FROM_NAME="${APP_NAME}"
 
 AWS_ACCESS_KEY_ID=
 AWS_SECRET_ACCESS_KEY=

+ 4 - 0
config/logging.php

@@ -95,6 +95,10 @@ return [
             'driver' => 'monolog',
             'handler' => NullHandler::class,
         ],
+
+        'emergency' => [
+            'path' => storage_path('logs/laravel.log'),
+        ],
     ],
 
 ];