3
Mage :: log เขียนไปยังหน้าจอ
ฉันมีระบบการพัฒนา display_errors เปิดอยู่ Magento อยู่ในโหมดนักพัฒนาซอฟต์แวร์และฉันพยายาม Mage::log($layered_navigation_filter_block); // Mage_Catalog_Block_Layer_Filter_Attribute และทุกอย่างถูกเขียนลงบนหน้าจอแทนที่จะเป็นไฟล์บันทึกทำไม? ดูเหมือนว่ากรณีนี้: // app/Mage.php:837 if (is_array($message) || is_object($message)) { $message = print_r($message, true); } แต่อาร์กิวเมนต์ที่สองจาก print_r จะถูกละเว้น: Mage_Catalog_Block_Layer_Filter_Category Object ( [_filter:protected] => ... [28-Jan-2013 22:48:43 UTC] PHP Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 241434624 bytes) in …
21
debugging