Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <[email protected]>
  • Loading branch information
crynobone committed Jul 17, 2024
1 parent d24f92e commit c23ebfb
Showing 1 changed file with 5 additions and 13 deletions.
18 changes: 5 additions & 13 deletions bin/sync
Original file line number Diff line number Diff line change
Expand Up @@ -91,24 +91,16 @@ transform([
], fn ($changes) => $files->replaceInFile(array_keys($changes), array_values($changes), "{$workingPath}/config/hashing.php"));

transform([
" 'single' => [
" 'daily' => [
'driver' => 'daily'," => " 'deprecations' => [
'driver' => 'single',
'path' => storage_path('logs/laravel.log'),
'level' => env('LOG_LEVEL', 'debug'),
'replace_placeholders' => true,
]," => " 'single' => [
'driver' => 'single',
'path' => storage_path('logs/laravel.log'),
'path' => storage_path('logs/deprecations.log'),
'level' => env('LOG_LEVEL', 'debug'),
'replace_placeholders' => true,
],
'deprecations' => [
'driver' => 'single',
'path' => storage_path('logs/deprecations.log'),
'level' => env('LOG_LEVEL', 'debug'),
'replace_placeholders' => true,
],"
'daily' => [
'driver' => 'daily',"
], fn ($changes) => $files->replaceInFile(array_keys($changes), array_values($changes), "{$workingPath}/config/logging.php"));

transform([
Expand Down

0 comments on commit c23ebfb

Please sign in to comment.