<@!941427347079458886> My fear is that in logs.in...
# plugins-integrations
a
@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
2 Views