Hi
While deploying Saleor project to heroku, I am getting an error when I run the command:
git push heroku master
The error info is following:
INFO raven.contrib.django.client.DjangoClient Raven is not configured (logging is disabled). Please see the documentation for more information. [PID:1112:MainThread]
I am using windows command prompt, please see the image below:

Please help me in this regard.
Hey @NumanIjaz, Raven is the Python client for Sentry that we recently added, but this is only an INFO log which says that it's disabled, so you shouldn't worry about that.
The actual traceback starts in the line below and the error is: "FileNotFoundError ...". There's a problem with collectstatic. I have no experience with Windows and I'm not sure what might have caused the error, however, in Heroku docs about Django assets you'll find hints on how to debug it more thoroughly.
Btw we should be adding Raven client to INSTALLED_APPS only when SENTRY_DSN is set, this would prevent showing this INFO message when it is disabled.
The issue with info log from Raven has been resolved. @NumanIjaz please open a new issue if you're still facing troubles with setting up Saleor on Heroku.
Most helpful comment
Btw we should be adding Raven client to INSTALLED_APPS only when SENTRY_DSN is set, this would prevent showing this INFO message when it is disabled.