With the current version of Flask, 0.12.2, the app.logger does not by default propagate to the root logger. This has the effect that no logging messages will be show in the toolbar.
This can easily be fixed with something like:
if app.debug:
app.logger.propagate = True
This should probably be mentioned in the documentation.
With the current version of Flask, 0.12.2, the app.logger does not by default propagate to the root logger. This has the effect that no logging messages will be show in the toolbar. This can easily be fixed with something like:
This should probably be mentioned in the documentation.