Вы можете добавить профилировщик в пакет доктрины
namespace Doctrine\DBAL\Logging;
class Profiler implements SQLLogger
{
public $start = null;
private $ci;
public function __construct()
{
$this->ci =& get_instance();
}
/**
* {@inheritdoc}
*/
public function startQuery($sql, array $params = null, array $types = null)
{
$this->start = microtime(true);
$this->ci->db->queries[] = "/* doctrine */ \n".$sql;
}
/**
* {@inheritdoc}
*/
public function stopQuery()
{
$this->ci->db->query_times[] = microtime(true) - $this->start;
}
}
Затем загрузить профилировщик в качестве регистратора в вашу основную библиотеку доктрин (doctrine.php для меня)
$logger = new \Doctrine\DBAL\Logging\Profiler;
$config->setSQLLogger($logger);
Инормальное профилирование будет работать нормально.