I have a Python script using https://abseil.io/docs/python/guides/logging.
Documentation does not specify how to set output file like in PEP 282.
I thought that Abseil Logging is built on top of the standard Python logging and I could just set the logging.basicConfig(filename='myapp.log', level=logging.INFO)
But I get:
AttributeError: module 'absl.logging' has no attribute 'basicConfig'