Removed debugging loggin in middleware

This commit is contained in:
snipe 2016-06-15 21:08:19 -07:00
parent 87352470c0
commit 416cd96c94

View file

@ -23,8 +23,7 @@ class CheckPermissions
*/ */
public function handle($request, Closure $next, $section = null) public function handle($request, Closure $next, $section = null)
{ {
Log::debug($section .' is the section');
if (Gate::allows($section)) { if (Gate::allows($section)) {
return $next($request); return $next($request);
} }