What kind of errors are you looking for? The Cake help messages (ie missing controller, action) are only really useful in development (unless gremlins keep deleting your files), so they are not logged anywhere if DEBUG is 0.
SQL statements are not logged anywhere if DEBUG is 0, unless you've set this up in your database server. In production you should have PHP errors logged to a file - but this is outside the scope of Cake. Check your php.ini for "log_errors" and "error_log". And finally, all of your debug messages using $this->log or LogError, will keep working regardless of the DEBUG setting. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en -~----------~----~----~----~------~----~------~--~---
