Skip to content

Commit 11afd7e

Browse files
committed
Rename filter_always to filter_all
1 parent 8f8e6f1 commit 11afd7e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config/http-client-logger.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
| that these settings are only used by the default filter.
3535
|
3636
*/
37-
'filter_always' => env('HTTP_CLIENT_LOGGER_FILTER_ALL', false),
37+
'filter_all' => env('HTTP_CLIENT_LOGGER_FILTER_ALL', false),
3838

3939
'filter_2xx' => env('HTTP_CLIENT_LOGGER_FILTER_2XX', true),
4040

src/HttpLoggingFilter.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public function shouldLog(
1818
return false;
1919
}
2020

21-
if (config('http-client-logger.filter_always')) {
21+
if (config('http-client-logger.filter_all')) {
2222
return true;
2323
}
2424

0 commit comments

Comments
 (0)