Skip to content

Commit

Permalink
Increase context depth in error messages.
Browse files Browse the repository at this point in the history
Fixes #3063
  • Loading branch information
markstory committed Jul 25, 2012
1 parent 70c714d commit 7d74f3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Utility/Debugger.php
Expand Up @@ -726,7 +726,7 @@ public function outputError($data) {
$info = '';

foreach ((array)$data['context'] as $var => $value) {
$context[] = "\${$var} = " . $this->exportVar($value, 1);
$context[] = "\${$var} = " . $this->exportVar($value, 3);
}

switch ($this->_outputFormat) {
Expand Down

0 comments on commit 7d74f3e

Please sign in to comment.