[Answer]-Boto error repeatedly appearing on Sentry server

0👍

The problem was the default email that Django sends to the emails on the ADMINS setting. Everytime we had an exception, it was trying to email root@localhost (the default value for ADMINS), but since this emails does not exists, it was failing to do so.

👤Thiago

1👍

Boto config

The Boto section is used to specify options that control the operation
of boto itself. This section defines the following options:

debug: Controls the level of debug messages that will be printed by
the boto library. The following values are defined:
0 – no debug messages are printed
1 – basic debug messages from boto are printed
2 – all boto debugging messages plus request/response messages from httplib

Make sure you restart your Django server for the log level to take effect

👤helloV

Leave a comment