Python logging equivalent
for e.g.
Here's my logging format in python:
logging.Formatter("%(asctime)s %(name)s:%(levelname)s [%(funcName)s:%(lineno)d] %(message)s") and we also have support for rotating logs in python.
i went through the docs and while I found how to add timestamp in the logs, there's no mention of func names or even code line numbers, The only thing I found is that we can extend default loggers in crawlee so can someone post a minimal example of how to extend these loggers to add in func names etc?
or is there support for third party logging libraries like winston that I can use for this? I am using PlayWright if that matters.
