↓CakePHP3での開発においてデバッグに役立つDebugKit
ですが、本番環境でWebアプリを運用する際にはこの表示を消しておくべきでしょう。
config/bootstrap.php 内の下記の部分を修正することで消えます。
/*
* Only try to load DebugKit in development mode
* Debug Kit should not be installed on a production system
*/
if (Configure::read('debug')) {
Plugin::load('DebugKit', ['bootstrap' => true]);
}
↓下記のように修正する。
/*
* Only try to load DebugKit in development mode
* Debug Kit should not be installed on a production system
*/
if (Configure::read('debug')) {
/*本番環境ではfalseにしておく*/
Plugin::load('DebugKit', ['bootstrap' => false]);
}
これで、画面上からDebugKitのアイコンが消えます。