Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(iroh): allow setting the logging directory via config file (#2391)
## Description Adds the options to set the directory where logs will be created in the config file. **Example:** ```toml [file_logs] rust_log = "iroh=info" rotation = "daily" max_files = 1 dir = "/home/me/my_logs" ``` It is recommended that the path is absolute, otherwise it will be interpreted as relative _to the execution dir_. If this option is not set, the default `<IROH_DATA_DIR>/logs` will be used. ## Breaking Changes N/a ## Notes & open questions N/a ## Change checklist - [ ] Self-review. - [ ] Documentation updates if relevant. - [ ] Tests if relevant. - [ ] All breaking changes documented.
- Loading branch information