We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cf8dca commit 89da9d6Copy full SHA for 89da9d6
src/Traits/CleansEnvFile.php
@@ -17,6 +17,7 @@ abstract protected function buildPath(string $path = ''): string;
17
'LOG_CHANNEL',
18
'LOG_STACK',
19
'LOG_DAILY_DAYS',
20
+ 'LOG_LEVEL',
21
];
22
23
public function cleanEnvFile(): void
@@ -38,6 +39,7 @@ public function cleanEnvFile(): void
38
39
->push('LOG_CHANNEL=stack')
40
->push('LOG_STACK=daily')
41
->push('LOG_DAILY_DAYS=3')
42
+ ->push('LOG_LEVEL=warning')
43
->join("\n");
44
45
file_put_contents($envFile, $contents);
0 commit comments