In a big code that has many functions and many calls I would like to print at screen or logger a back trace of any function with any additional info for example:
main calls function A and A calls function B that calls function C.
If I put a print at function C I would like it to print main::A::B::C - [any parameter value for debugging]
or any other format.
This will help me debug the issue I am facing faster.
Note: for those who will answer me that you can put a print on each function, as I said many calls and many flows.