You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
0 commit comments