Code Monsters Explore the enchanted forest to capture monsters and learn how to program them by completing coding puzzles. Collect, code, and evolve the monsters to victory! Hello out there. I have been rather antisocial for the last decade, while I've been grinding the apps above. Most are for iOS devices, but some are also on the Mac; some even are on the Apple Watch. Description: CodeCatching Personal Info Managers 4096 KB David Delmonte Business vers 5.0 CodeCatching CodeCatching is an app that allows people to save stuff - receipts, images of important ar.
Flask Series

Logging
Logging is used to collect and store valuable information about the application’s execution, that can be used for troubleshooting purposes. Logging includes either storing data to log files, sending it to monitoring services, Windows event logs, Unix syslogs, etc.. Information, being stored and / or sent, can be text messages, call stacks, everything application and environment related, which can be used later on for debugging.
One of the most common approaches used is to log in files. Below you could have a look at the logging configuration and how to use it within a Flask application:
More logging handlers that can be used are:
- RotatingFileHandler
- NTEventLogHandler
- SysLogHandler
You could control the logging data format as well, helpful information how to achieve this goal can be found here.

Error Management

Flask allows to an error handler to a given HTTP status code. There are two types of errors that we will concentrate on in this blog post – application and route errors. Application errors refer to issues in the application code – catching the raised exceptions, etc.. Route errors are about missing or wrong URLs.
Route Errors
Flask provides developers with means to implement their own error handlers via the errorhandler decorator.
Where you need to specify the client or server error codes and to implement a method that returns the content of the page, plus the error code. More information can be found here.
Application Errors
Code Catcher Pokemon
You could either use try/except to handle an exception (where you know it may appear) or provide global error handler.
Example Log
Testing of the Error Handlers
It is very easy to test the implemented error handlers in the Flask application.
In the next blog post I will describe how to secure your Flask application.

Code Catcher App Pokemon
The complete demo application, described in this blog post, can be found here.