Open vdboor opened 10 years ago
Investigating it deeper, it seems that the error is triggered by the following extra={...}
construct:
self.logger.warning('Request exceeeded execution time threshold: %s', url, extra={
'request': request,
'view': culprit,
'stack': frames,
'url': url,
'data': {
'threshold': self.threshold,
}
})
When the stack
argument value is simply True
, the Raven error does not occur.
@vdboor i believe the 'stack' value its passing is no longer in an acceptable format
I'm a bit lost here. Would you be able to fix this?
I'm getting the following errors:
This is my WSGI file:
I'm using:
raven.contrib.django.middleware.SentryLogMiddleware
Thanks in advance for any assistance or tips to solve this.