Bagaimana kita bisa mencetak variabel array dalam file log Magento 2?


13

Saya mencoba mencetak isi variabel array ke dalam file log.

Di Magento 1, itu mungkin menggunakan Mage::log(print_r($arr, 1), null, 'logfile.log');

Untuk Magento 2, dalam file kelas saya telah menulis kode berikut:

protected $_logger;

    public function __construct(\Psr\Log\LoggerInterface $logger) {
        $this->_logger = $logger;
    }


private function getValuesAsHtmlList(\Magento\Framework\Object $object) {
        $options = $this->getOptions($object);
       //$this->_logger->addDebug($options );
        $this->_logger->log(100,null,$options);
    }

Ketika saya menjalankan kode setelah membersihkan cache, Debug.log& system.logfile tidak menampilkan konten array.

Silakan bagikan jika ada yang tahu tentang itu.

Jawaban:


16

Misalkan array Anda adalah

$a = array ('a' => 'apple', 'b' => 'banana', 'c' => array ('x', 'y', 'z'));

maka Anda harus menulis kode di bawah ini untuk menulis format array yang tepat di file log Anda

$this->_logger->log(100,print_r($a,true));

Ini akan mencetak dalam file log Anda

[2015-11-09 06:58:27] main.DEBUG: Array
(
    [a] => apple
    [b] => banana
    [c] => Array
        (
            [0] => x
            [1] => y
            [2] => z
        )

)
 {"is_exception":false} []

10

Lihat deklarasi metode log

public function  \Psr\Log\LoggerInterface::log($level, $message, array $context = array());

Jadi, Anda perlu kode seperti

$this->_logger->log(100, json_encode($options));

Saya akan print_r ($ options, true) sendiri daripada pengodean json. Tapi preferensi \ o /
Barry Carlyon

4
lebih baik lagi:$this->_logger->debug(json_encode($options));
nevvermind

2

Metode ini bekerja dengan baik untuk saya.

$this->logger->info(print_r($myArray, true));

Kemudian periksa system.logfile Anda .


0
protected $_logger;

    public function __construct(\Psr\Log\LoggerInterface $logger) {
        $this->_logger = $logger;
    }

public function logs(){
  $level='log';
$this->_logger->log($level,'errorlog1234', array( array('test1'=>'123', 'test2' => '456'), array('a'=>'b') ));

}

Coba ini akan mencetak array. Diuji!


0

Untuk array dan juga objek cukup gunakan

public function __construct(\Psr\Log\LoggerInterface $logger) {
        $this->_logger = $logger;
    }

public function logs(){

$this->logger->info(print_r($orderData, true));
}

dan periksa output dalam /var/log/debug.logfile


0

Saya melihat file inti menggunakan var_export:

//File: vendor/magento/module-paypal/Model/AbstractIpn.php
/**
 * Log debug data to file
 *
 * @return void
 */
protected function _debug()
{
    if ($this->_config && $this->_config->getValue('debug')) {
        $this->logger->debug(var_export($this->_debugData, true));
    }
}
Dengan menggunakan situs kami, Anda mengakui telah membaca dan memahami Kebijakan Cookie dan Kebijakan Privasi kami.
Licensed under cc by-sa 3.0 with attribution required.