From 3d47d76adab59f4c2ecbd3aba359f230c734e5c6 Mon Sep 17 00:00:00 2001 From: Kush Trivedi <44091822+kushthedude@users.noreply.github.com> Date: Sat, 22 Feb 2020 19:01:32 +0530 Subject: [PATCH] chore: Silence the evented-api-usage warnings Logs are extremely hard to read with more than 50k lines. --- config/deprecation-workflow.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/deprecation-workflow.js b/config/deprecation-workflow.js index 3645b73e06d..a8d84b10995 100644 --- a/config/deprecation-workflow.js +++ b/config/deprecation-workflow.js @@ -2,6 +2,7 @@ window.deprecationWorkflow = window.deprecationWorkflow || {}; window.deprecationWorkflow.config = { workflow: [ { handler: 'silence', matchId: 'ember-routing.route-router' }, - { handler: 'silence', matchId: 'ember-views.curly-components.jquery-element' } // Depreciating the jquery warnings until we have moved away from jquery or used native jquery in the app. + { handler: 'silence', matchId: 'ember-views.curly-components.jquery-element' }, // Silencing the jquery warnings until we have moved away from jquery or used native jquery in the app. + { handler: 'silence', matchId: 'ember-data.evented-api-usage' } // Silencing the Evented-API warnings until we have solved https://github.com/fossasia/open-event-frontend/issues/4024 . ] };