> Hello everybody,
> I have a flask app which logs to file.

I suppose you mean a 'custom' logger and not the default app.logger one
(the one you enable with app.debug = True)

If this is the case, be sure to not give the logger the same name of your
app, as internally flask will initialize a logger with the same name when
imported as a module (like uWSGI does).

If (instead) you mean embedded flask logging, just be sure to set
app.debug = True

-- 
Roberto De Ioris
http://unbit.it
_______________________________________________
uWSGI mailing list
[email protected]
http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi

Reply via email to