Skip to content

Instantly share code, notes, and snippets.

View paslandau's full-sized avatar
💭
¯\_(ツ)_/¯

Pascal Landau paslandau

💭
¯\_(ツ)_/¯
View GitHub Profile
@andybeak
andybeak / Kernel.php
Created May 11, 2016 08:35
Laravel 5.2 Fingers Crossed logging setup
// laravel 5.1 kernel (http and console) to bootstrap using the custom ConfigureLogging class
public function __construct(Application $app, Router $router)
{
parent::__construct($app, $router);
array_walk($this->bootstrappers, function(&$bootstrapper)
{
if($bootstrapper === 'Illuminate\Foundation\Bootstrap\ConfigureLogging')
{