this is probably trivial, but i have a quite long sql query and echo Kohana::debug( $obj ); cuts off the tail of the query, replacing it with ‘…’.
how would i go about getting the full thing?
(something nicer than var_dump if possible ;-))
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Try using the Profiler. For Kohana 3, put this in your template:
If you’re using Kohana 2, just load the library in your controller:
The profiler dumps details of timing, post, cookies, sessions and database queries.