debugKit panel is not displayed

After install CakePHP3 ver. 3.6.2, debug_kit don’t show panel. in the log file
“Warning: DebugKit is disabling itself as your host newtest.my is not in the known safe list of top-level-domains (localhost,dev,invalid,test,example,local). If you would like to force DebugKit on use the DebugKit.forceEnable Configure option.”

How i can enable debug panel? Thank’s!

as the warning say set configure DebugKit.forceEnable:

use Cake\Core\Configure;
Configure::write('DebugKit.forceEnable', true);

Yes! It’s works. Thank you!!