https://kedro.org/ logo
#plugins-integrations
Title
# plugins-integrations
a

Arnaldo

02/14/2022, 12:41 PM
@User > My fear is that in logs.info, the logs of all consequent runs are appended, so the file might become a bit too heavy to log only the current session to
log/info.log
, you can change the
info_file_handler
in
conf/<env>/logging.yml
to the following:
Copy code
info_file_handler:
        class: logging.FileHandler
        level: INFO
        formatter: simple
        filename: logs/info.log
        mode: w
        encoding: utf8
        delay: True