refactor: remove exception tracker (#8737)

This commit is contained in:
Shivam Mishra
2024-01-18 17:49:27 +05:30
committed by GitHub
parent e39c14460b
commit aacf326ca1

View File

@@ -53,7 +53,7 @@ module Api::V1::InboxesHelper
rescue StandardError => e
raise StandardError, e.message
ensure
ChatwootExceptionTracker.new(e).capture_exception if e.present?
Rails.logger.error "[Api::V1::InboxesHelper] check_imap_connection failed with #{e.message}" if e.present?
end
def check_smtp_connection(channel_data, smtp)