「Php/codeigniter/ログ」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→ログ設定場所) |
(→ログ出力方法) |
||
行1: | 行1: | ||
+ | ==ログ設定== | ||
+ | application/config/config.php | ||
+ | <pre> | ||
+ | $config['log_threshold'] = 0; | ||
+ | 0 = 表示しない(デフォルト) | ||
+ | 1 = Error Messages (including PHP errors) | ||
+ | 2 = Debug Messages | ||
+ | 3 = Informational Messages | ||
+ | 4 = All Messages | ||
+ | </pre> | ||
+ | |||
+ | ==ログ出力場所== | ||
+ | application/config/config.php | ||
+ | <pre> | ||
+ | $config['log_path'] = ''; | ||
+ | </pre> | ||
+ | 何も設定しなければ、application/logs/ に出力される | ||
+ | |||
==ログ出力方法== | ==ログ出力方法== | ||
log_message('info', "test!!") | log_message('info', "test!!") |
2024年11月1日 (金) 02:52時点における版
ログ設定
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'] = '';
何も設定しなければ、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!!