Memo
Diesmal habe ich Sanic benutzt.
Ausschluss der Klasse, die Sie filtern möchten_level_Mit Filtern ignoriert
...
from sanic.exceptions import NotFound
rollbar_token = os.getenv('ROLLBAR_TOKEN', None)
opts = {
'exception_level_filters': (NotFound, 'ignored')
}
if rollbar_token:
rollbar.init(rollbar_token, opts)
Recommended Posts