Skip to content

MacareuxDigital/concretecms_debugbar

 
 

Repository files navigation

Concrete CMS DebugBar

A package to integrate PHP Debug Bar with Concrete CMS.

Usage

Messages

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);

Messages Tab

Timeline

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');

Timeline Tab

Request

You can check how Concrete retrieve request data in this tab.

Request Tab

Session

You can check values stored in the current session.

Session Tab

Database

You can check all sql queries on current request in this tab.

Database Tab

Logs

You can check application logs (same as dashboard/reports/logs but you can quick access!).

Logs Tab

Environment

Get some information about the server/application environment.

Environment Tab