Skip to content

Instantly share code, notes, and snippets.

@shouhei
Created May 11, 2014 07:19
Show Gist options
  • Save shouhei/f738a069d229b29418bf to your computer and use it in GitHub Desktop.
Save shouhei/f738a069d229b29418bf to your computer and use it in GitHub Desktop.
Appモデルに打ち込めばsaveのログが全部取れるやーつ
public function afterSave(){
$data = $this->getDataSource();
$all_log = $data->getLog();
$last_log = end($all_log['log']);
$last_query = $last_log['query'];
$this->log($last_log['query'],SQL_SAVE);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment