Thanks for this great extension & module!

For my purposes, the most important SQL query information devel.module provides is the summary of the query log, "Executed x queries in x milliseconds."

This information is assigned in the line list($counts, $query_summary) = devel_query_summary();, but it is not actually output to the Firebug console. I think that on the line immediately following $output = <h4>SQL Query Log&lt/;h4>, the summary should be added to $output, so that it shows up like it does when devel.module renders its query logging information to the browser window.

Here's all that is necessary: $output .= $query_summary; (after line 132 of drupalforfirebug.module).

Let me know if you think that is a good addition, and I can make it into a patch if you need that.

Comments

EvanDonovan’s picture

Sorry, I didn't realize that Drupal.org would automatically escape my html for me. Make that "on the line immediately following $output = <h4>SQL Query Log</h4>"

populist’s picture

Status: Active » Fixed

Great suggested. Committed.

EvanDonovan’s picture

Thanks!

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.