Are you referring to the sql log that used to appear at the bottom of the page?
According to http://book.cakephp.org/view/1561/Migrating-from-CakePHP-1-2-to-1-3#Model-Databases-and-Datasources-1567: *SQL log dumping* A commonly asked question is how can one disable or remove the SQL log dump at the bottom of the page?. In previous versions the HTML SQL log generation was buried inside DboSource. For 1.3 there is a new core element called sql_dump. DboSource no longer automatically outputs SQL logs. If you want to output SQL logs in 1.3, do the following: Copy to Clipboard 1. <?php echo $this->element('sql_dump'); ?> -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php
