I have a few function under one function app and I am doing some process flow logging using python standard library like
from logging.handlers import RotatingFileHandler
I saved the log files in the fileshare. I am expecting all the log files should contain only the function's log but i notice that the log generated by Function A is appear in log files for Function B. Similarly, log generated by Function B is appeared in Function A log files.
Is there any way for us to prevent this condition from happening or is there any setting we could use?
Thanks!