Browse Source

Merge pull request #2656 from makusu/fix-debugger-templates-array

fix multiple log array key definition on templates property in Debugger
Christian Winther 12 years ago
parent
commit
ace586e367
1 changed files with 1 additions and 2 deletions
  1. 1 2
      lib/Cake/Utility/Debugger.php

+ 1 - 2
lib/Cake/Utility/Debugger.php

@@ -79,8 +79,7 @@ class Debugger {
 			'traceLine' => '{:reference} - {:path}, line {:line}',
 			'trace' => "Trace:\n{:trace}\n",
 			'context' => "Context:\n{:context}\n",
-		),
-		'log' => array(),
+		)
 	);
 
 /**