Skip to content

Commit

Permalink
Debug errors again.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Sep 23, 2024
1 parent b71400d commit 6a1647d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
* Development Mode:
* true: Errors and warnings shown.
*/
'debug' => filter_var(env('DEBUG', true), FILTER_VALIDATE_BOOLEAN),
// 'debug' => true,
// 'debug' => filter_var(env('DEBUG', true), FILTER_VALIDATE_BOOLEAN),
'debug' => true,

/**
* Configure basic information about the application.
Expand Down
2 changes: 1 addition & 1 deletion src/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function bootstrap(): void
$this->addPlugin('Cake/ElasticSearch');

if (Configure::read('debug')) {
$this->addPlugin('DebugKit');
// $this->addPlugin('DebugKit');
}
ConnectionManager::setDsnClassMap([
'http' => Connection::class,
Expand Down

0 comments on commit 6a1647d

Please sign in to comment.