Skip to content

Debugging Tools

Monarch provides a few tools to help you debug your application. As web developers the browser is our playground. The debugging tools take this to heart. Many of them are designed to be used in the browser's console.

Monarch Info Panel

Instead of using a traditional debug bar in the browser window, Monarch uses the browser's console window to display debugging information. This is done to keep the browser window clean and to avoid interfering with the layout of the page. The Monarch info panel is displayed in the console window when an HTML page or fragment is loaded.

It displays some basic stats including elapsed time for Monarch to build the page, the peak memory used, whether it's an HTMX request, and route information. It also displays information gleaned from HTMX's request headers, as well as a list of all headers found for the Request, in case that is different than what HTMX sends.

Adding Custom Info

You can add custom information to the Basic Stats section of the info panel by using the Monarch\Debug\Info class.

use Monarch\Debug\Info;

Info::instance()->add('Custom Label', 'Custom Value');

Console Logging

The debug() helper function provides a wrapper around many of Javascript's console logging functions. The methods are used within the PHP files, but the logs are displayed in the browser's console. The display has custom styling to make it instantly recognizable as a Monarch log.

debug()->error('Your message');
debug()->info('Your message');
debug()->warn('Your message');
debug()->debug('Your message');
debug()->log('Your message');

These are the basic logging methods and will output the appropriate log level in the console. The first parameter is the item to display. This can be a string, array, object, or any other type of data. You can also use the second parameter to specify a label for the log. The label will be displayed in the console before the item, surrounded by square brackets. If you are logging an array or object, the label will be displayed on the line above the item, using the "log" styling.

debug()->log('Your message', 'Label');
// [Label] Your message

Logging Tabular Data

If you have an array of arrays, you can log it as a table. This is useful for displaying data in a more readable format.

$users = [
    ['name' => 'John', 'age' => 26],
    ['name' => 'Jane', 'age' => 28],
];

debug()->table($users);

Grouping Logs

If you have many logs to display you may find that the console becomes cluttered. You can group logs together to keep things organized. Each group will be collapsible in the console. You specify the group by calling the group method, and then call groupEnd to close the group.

debug()->group('Group Label');
debug()->log('Your message');
debug()->groupEnd();

Configuring Logging

By default, the log items are echoed out at the location that you call the debug() function. You can change this behavior by setting the capture option to true in the debug config file. This will display all of the logs at the end of the page, just prior to the closing </body> tag. The advantage here is that the script tags that do the logging do not clutter up the HTML source. This does come at a cost of not seeing what line in the generated HTML the log was called from.

Local Debugging

In addition to logging to the browser console, you can also view more information using Kint's d() function or dd(). This will display a more detailed view of the data in the browser window. This is useful for debugging complex data structures.

d($data);
dd($data);