facebook twitter hatena line email

「Php/codeigniter/ログ」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ログ書込できるように権限変更)
(ログ例)
行11: 行11:
 
==ログ例==
 
==ログ例==
 
<pre>
 
<pre>
INFO  2023-10-22 14:16:21  Version.index(84) -- test!!
+
INFO  2023-10-22 14:16:21  hoge(84) -- test!!
 
</pre>
 
</pre>

2024年10月22日 (火) 14:08時点における版

ログ出力方法

log_message('info', "test!!")

ログの場所

application/config/config.php

$config['log_path'] = APPPATH . "/config/logs/";

ログ書込できるように権限変更

chmod 755 application/config/logs/

ログ例

INFO  2023-10-22 14:16:21  hoge(84) -- test!!