Php/codeigniter/ログ
提供: 初心者エンジニアの簡易メモ
ログ設定
application/config/config.php
$config['log_threshold'] = 0; 0 = 表示しない(デフォルト) 1 = Error Messages (including PHP errors) 2 = Debug Messages 3 = Informational Messages 4 = All Messages
ログ出力場所
application/config/config.php
$config['log_path'] = '';
何も設定しなければ、$config['log_path'] = 'application/logs/'; が入る
ログ出力方法
log_message('info', "test!!")
- error:エラー
- debug:デバッグ
- info:情報
配列出力方法
log_message('info', print_r($users, 1));
ログ設定場所
application/config/config.php
$config['log_path'] = APPPATH . "/logs/";
設定がないときは application/logs になる
ログ書込できるように権限変更
chmod 755 application/config/logs/
ログ例
INFO 2023-10-22 14:16:21 hoge(84) -- test!!