Moving basic templates to the 'base' key.

This commit is contained in:
mark_story 2011-09-28 21:11:35 -04:00
parent aa6d6a9918
commit 864cb70645

View file

@ -75,13 +75,13 @@ class Debugger {
), ),
'txt' => array( 'txt' => array(
'error' => "{:error}: {:code} :: {:description} on line {:line} of {:path}\n{:info}", 'error' => "{:error}: {:code} :: {:description} on line {:line} of {:path}\n{:info}",
'context' => "Context:\n{:context}\n",
'trace' => "Trace:\n{:trace}\n",
'code' => '', 'code' => '',
'info' => '' 'info' => ''
), ),
'base' => array( 'base' => array(
'traceLine' => '{:reference} - {:path}, line {:line}' 'traceLine' => '{:reference} - {:path}, line {:line}',
'trace' => "Trace:\n{:trace}\n",
'context' => "Context:\n{:context}\n",
), ),
'log' => array(), 'log' => array(),
); );