summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--server/notifications/email.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/server/notifications/email.js b/server/notifications/email.js
index fc05456f..b2b7fab8 100644
--- a/server/notifications/email.js
+++ b/server/notifications/email.js
@@ -2,7 +2,6 @@
Meteor.startup(() => {
Notifications.subscribe('email', (user, title, description, params) => {
// add quote to make titles easier to read in email text
- console.log('ICI', user, title, description, params);
const quoteParams = _.clone(params);
['card', 'list', 'oldList', 'board', 'comment'].forEach((key) => {
if (quoteParams[key]) quoteParams[key] = `"${params[key]}"`;