Magento 2のログファイルに配列変数を印刷するにはどうすればよいですか?


13

配列変数の内容をログファイルに出力しようとしています。

Magento 1では、以下を使用できました。 Mage::log(print_r($arr, 1), null, 'logfile.log');

Magento 2では、クラスファイルに次のコードを記述しました。

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);
    }

キャッシュをクリアした後にコードを実行すると、Debug.logsystem.logファイルに配列の内容が表示されません。

誰かがそれについて考えているなら共有してください。

回答:


16

あなたの配列が

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

次に、ログファイルに適切な配列形式を書き込むために以下のコードを書く必要があります

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

あなたのログファイルに印刷されます

[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

logメソッドの宣言を参照してください

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

そのため、次のようなコードが必要です

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

jsonエンコーディングの代わりに自分でprint_r($ options、true)を使いました。しかし、好み\ o /
バリーカーリヨン

4
まだ良い:$this->_logger->debug(json_encode($options));
nevvermind

2

この方法は私に適しています。

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

次に、system.logファイルを確認します。


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') ));

}

これを試して、配列を印刷します。 テスト済み!


0

配列とオブジェクトのためだけに使用します

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

public function logs(){

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

/var/log/debug.logファイルの出力を確認します


0

コアファイルで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));
    }
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.