SilverStripe CMS/Framework in itself has quite a toolset available for debugging, like Debug::dump(); and the URL parameters, but they’re rendered at the top of the page, which may not be ideal. You might have some fixed or absolute positioned items like a menubar, obfuscating part of the output.
There’s also your IDE with XDebug. But sometimes, that can be overkill. You don’t always want to halt the process, just for reading the request parameters, let alone dump them into the page and then accidentally forget to remove them later.
Recently, I stumbled upon a new little project by Thomas, better known as Lekoala, who built the first version of a DebugBar. Some of you might work with Symfony2 or Laravel and know about the large debugging option they give in-browser when they’re enabled.
DebugBar adds a little nice window below your website, containing a lot of information. Most helpful, I found, is the Database, which gives you all the executed queries (works with PDO only).
Request
Want to know your request parameters? Look no further. All parameters are included, and can optionally be expanded, with color highlighting. Even JSON cookies work just fine and are nicely highlighted:
One thing I would like to see here would be the URL split into the Params as the Controller provides them. But you can’t have everything on the first go, right?
The useful thing about having the request this verbose means you can easily debug your post and/or request actions, without having to revert to the debugger just to see the variables. Overall, a nice addon to the features SilverStripe already has.
Timeline
This is mostly a shortened version of the request measurer from most default tools already installed in the browsers, with the main difference showing a shortened version of the internal request process, and how long they take:
Mind you, this is on my local little machine—not really a fast machine. But it shows that most is taken up by my own controller. Apparently, I have to fix some issues there?
Exceptions
Let’s hope you never run into them. But if they are there, you’ll see them. But since PHP already kicks the bucket when it runs into an exception, it’s a bit of a double-up.
Database
My favorite. I always try to kick down the amount of DB queries executed. And having an overview of the queries with the parameters is awesome. ?showqueries=1 works, but it’s not as detailed as the PDO output itself.
Although this only works with the PDO driver, it’s extremely useful. It tries to identify duplicate queries as well. Although admittedly, they’re often not really duplicates, but a duplicate query with different parameters.
I believe this is a very useful feature!
Config
An overview of your SiteConfig variables that are loaded. Although you should already know them, it’s not bad to show how big your SiteConfig is getting. And it made me slim down my SiteConfig quite a bit!
That’s it for now—another useful SilverStripe module to help you get on the way.
Oh yes, the folder-icon. That’s for searching history it seems, but I can’t get it to work (uh-oh). I guess I’m doing it wrong? Compu’er says no.
So, if you are looking for some extra development tools on top of the already available tools, or just feel like some more coding, get the module, play around with it, and of course, don’t forget to contribute.
Post your comment
Comments
No one has commented on this page yet.
RSS feed for comments on this page | RSS feed for all comments