Skip to content

Instantly share code, notes, and snippets.

@shouhei
Created May 11, 2014 07:18
Show Gist options
  • Save shouhei/d48588482bd0ac57d139 to your computer and use it in GitHub Desktop.
Save shouhei/d48588482bd0ac57d139 to your computer and use it in GitHub Desktop.
cakeの日付ごとの独自ログ
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