How to track local variables of a python function for effective debugging

In this guide we explore 3 ways to trace the local variables during a python function execution using print, logging, Elastic APM and sys.settrace()

I’ve always loved programming IDEs that have good debugging capabilities. I like using PyCharm’s debugging capabilities when it comes to debugging or tracing my local variables in my Python functions. The problem I run into nowadays, is that I have a program that I want to run continuously, but I... [Read More]