From ded7a171403f2b401988f30094c82e13300f0cf4 Mon Sep 17 00:00:00 2001 From: Tejas Manohar Date: Tue, 27 Oct 2015 14:50:45 -0700 Subject: [PATCH] deprecate env-specific logging in v2 closes #561 --- lib/application.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/application.js b/lib/application.js index c3edd5a..f4a59eb 100644 --- a/lib/application.js +++ b/lib/application.js @@ -155,8 +155,6 @@ module.exports = class Application extends Emitter { if (404 == err.status || err.expose) return; if (this.silent) return; - // DEPRECATE env-specific logging in v2 - if ('test' == this.env) return; const msg = err.stack || err.toString(); console.error();