2013-12-25から1日間の記事一覧

任意のログファイルにログを出力する

任意のログファイルにログを出力する時のメモ。 app/Config/bootstrap.php define('DEBUG_LOG', 'debug_log'); CakeLog::config('debug_log', array( 'engine' => 'FileLog', 'types' => array('debug_log'), 'file' => 'debug_log', )); $this->log($debug,…