A package to integrate PHP Debug Bar with Concrete CMS.
You can add messages to this tab using compatible usage with PSR-3 logger.
\Core::make('debugbar/messages')->info('hello world');
\Core::make('debugbar/messages')->info($object);
You can check a timeline within the runtime. You can also add log the execution time of a particular operation.
\Core::make('debugbar/time')->startMeasure('longop', 'My long operation');
sleep(2);
\Core::make('debugbar/time')->stopMeasure('longop');
You can check how Concrete retrieve request data in this tab.
You can check values stored in the current session.
You can check all sql queries on current request in this tab.
You can check application logs (same as dashboard/reports/logs but you can quick access!).
Get some information about the server/application environment.