Skip to content

Instantly share code, notes, and snippets.

@jesseobrien
Created January 16, 2014 15:49
Show Gist options
  • Select an option

  • Save jesseobrien/8457194 to your computer and use it in GitHub Desktop.

Select an option

Save jesseobrien/8457194 to your computer and use it in GitHub Desktop.
Illuminate log every database query.
<?php
$this->app->events->listen('illuminate.query', function($query)
{
$this->app->log->warning($query);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment