「Php/codeigniter/ログ」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→ログ出力方法) |
(→ログの場所) |
||
行9: | 行9: | ||
log_message('info', print_r($users, 1)); | log_message('info', print_r($users, 1)); | ||
− | == | + | ==ログ設定場所== |
application/config/config.php | application/config/config.php | ||
$config['log_path'] = APPPATH . "/config/logs/"; | $config['log_path'] = APPPATH . "/config/logs/"; |
2024年10月22日 (火) 20:52時点における版
ログ出力方法
log_message('info', "test!!")
- error:エラー
- debug:デバッグ
- info:情報
配列出力方法
log_message('info', print_r($users, 1));
ログ設定場所
application/config/config.php
$config['log_path'] = APPPATH . "/config/logs/";
設定がないときは application/log になる
ログ書込できるように権限変更
chmod 755 application/config/logs/
ログ例
INFO 2023-10-22 14:16:21 hoge(84) -- test!!