Created
May 11, 2014 07:18
-
-
Save shouhei/d48588482bd0ac57d139 to your computer and use it in GitHub Desktop.
cakeの日付ごとの独自ログ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define('SQL_SAVE', 'sql_save'); | |
$save_log_file = date('Ymd').'_sql_save'; | |
CakeLog::config('sql_save', array( | |
'engine' => 'FileLog', | |
'types' => array('sql_save'), | |
'file' => $save_log_file, | |
)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment