From 7028dc09d459730fdfd02aebc032a2072f66470a Mon Sep 17 00:00:00 2001 From: Jared King Date: Wed, 24 Sep 2014 10:52:41 -0500 Subject: [PATCH] disable logger during tests --- src/TestBootstrap.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/TestBootstrap.php b/src/TestBootstrap.php index 2e1a302..e3fd937 100644 --- a/src/TestBootstrap.php +++ b/src/TestBootstrap.php @@ -27,6 +27,8 @@ public function __construct($verbose = false) if( !$config ) $config = []; + $config['logger']['enabled'] = false; + $this->app = new App( $config ); self::$staticApp = $this->app;