You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In a couple places in the grpcserver command you have self.stdout.write which doesn't really play well with customized logging setups. Would it be possible for these to be logging.info() or logging.debug() calls instead?
The text was updated successfully, but these errors were encountered:
Runserver isn't meant for production use though. For production Django you use the wsgi interface which doesn't log anything to stderr/stdout. So I figured this should be used in the same way as wsgi.
In a couple places in the grpcserver command you have
self.stdout.write
which doesn't really play well with customized logging setups. Would it be possible for these to belogging.info()
orlogging.debug()
calls instead?The text was updated successfully, but these errors were encountered: