I need to log specific actions of my web application (based on Python - SQL alchemy with Postgres), and I donβt want to either write log data to my Postgres database (why fill it mainly with garbage?), Or use a log file (hard to find )
Ideally, I would like to drop everything into another database and do it asynchronously. With asynchronous logging, I donβt have to worry about the write operation failing and breaking code that does all the important things. Also, if I skip a few registration events, it probably doesn't matter much.
Mongo seems like a great solution as it is well suited for writing operations and is easy to configure.
The problem is that I was not able to find any python tools that cover my needs and in particular the asynchronous requirement.
Any thoughts?
source share