diff --git a/comments/forms.py b/comments/forms.py
index b693b4a087ab182e3fed3a2ce060691bdb5de1e8..e9ec07e3e4ce6a08e627108737331bcc077647ea 100644
--- a/comments/forms.py
+++ b/comments/forms.py
@@ -42,10 +42,7 @@ class VetCommentForm(forms.Form):
         If the comment is refused, make sure a valid refusal reason is given.
         """
         data = super().clean()
-        print('Cleaning, action_option = %s' % data['action_option'])
         if data['action_option'] == str(COMMENT_ACTION_REFUSE):
-            print('Refusing')
             if data['refusal_reason'] == str(COMMENT_REFUSAL_EMPTY):
-                print('Flagging invalid reason')
                 self.add_error(None, 'Please choose a valid refusal reason')
         return data