LoginSignup
1
1

EC-CUBE4のメモ

Last updated at Posted at 2023-12-03

logでオブジェクトをデバッグしたい

通常のログ

log_info('xxxxxxx');

オブジェクトのデバッグ

$myCar = new stdClass;
$myCar->engine = 'Engine1';
log_info("xxxxx", (array)$myCar);

その他の情報は他のページを参照

ログの出力先やlogの種類など。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1