From 61bff03029fdaedc0f11da6ce78e68420f9a1f49 Mon Sep 17 00:00:00 2001 From: Artur Moczulski Date: Sat, 18 May 2019 06:19:13 +0200 Subject: [PATCH] fix(exception email): remove debug statement Closes #2 --- force-app/main/default/classes/ExceptionEmailParser.cls | 2 -- 1 file changed, 2 deletions(-) diff --git a/force-app/main/default/classes/ExceptionEmailParser.cls b/force-app/main/default/classes/ExceptionEmailParser.cls index f7a8326..2c8e686 100644 --- a/force-app/main/default/classes/ExceptionEmailParser.cls +++ b/force-app/main/default/classes/ExceptionEmailParser.cls @@ -1,8 +1,6 @@ public with sharing class ExceptionEmailParser { public static ExceptionData parse(String emailBody) { - System.debug(emailBody); - ExceptionData exData = new ExceptionData( parseEnvironment(emailBody), parseUserOrg(emailBody),