Skip to content

Commit fb0aff3

Browse files
authored
Merge pull request #7 from anteriovieira/patch-1
Provide an alternate way to configure UNDERSTAND
2 parents ef65d6c + 6512d12 commit fb0aff3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/config/understand-laravel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* Input key
77
*/
8-
'token' => 'your-input-token-from-understand-io',
8+
'token' => env('UNDERSTAND_TOKEN'),
99

1010
/**
1111
* Specifies whether logger should throw an exception of issues detected
@@ -18,7 +18,7 @@
1818
* Note that the async handler will only work in systems where
1919
* the CURL command line tool is installed
2020
*/
21-
'handler' => 'sync',
21+
'handler' => env('UNDERSTAND_HANDLER', 'sync'),
2222

2323
'log_types' => [
2424
'eloquent_log' => [

0 commit comments

Comments
 (0)