re_encode_content should not log to Sentry
The point of this function is to try various decodings; but it sends a log message to sentry on every failure, which is unnecessarily noisy.
https://sentry.softwareheritage.org/organizations/swh/issues/9013/?referrer=phabricator_plugin
UnicodeDecodeError: 'utf-8' codec can't decode byte 0x80 in position 78: invalid start byte
File "swh/web/browse/utils.py", line 130, in re_encode_content
content_data = content_data.decode(enc).encode("utf-8")
Migrated from T3979 (view on Phabricator)