I can see the if `QA_DEBUG_PERFORMANCE` is enabled, that each page shows the debug information.
IMHO, the queries and data should only be shown to the admin.
To achieve this, I would like to check if the site viewer is the admin by:
if (QA_DEBUG_PERFORMANCE && qa_get_logged_in_level() == QA_USER_LEVEL_SUPER) { ...
In `qa-base.php` however, i cannot access the function `qa_get_logged_in_level()`, it is not yet defined.
Any chance to implement this only for admin?