summaryrefslogtreecommitdiff
path: root/crates/arti/src/logging
Commit message (Collapse)AuthorAgeFilesLines
* arti: log errors using `tor_error::ErrorReport`Steven Engler2025-08-181-1/+14
|
* arti: log error fields lastSteven Engler2025-08-181-0/+94
|
* Use {u64,usize}::div_ceilNick Mathewson2024-09-301-1/+1
| | | | | Previously we had to avoid it, but now that our MSRV is above 1.73 we can use it with abandon.
* Run maint/add_warning.Nick Mathewson2024-03-131-0/+1
|
* arti: Fix Windows testTobias Stoeckmann2024-03-011-4/+10
| | | | | Windows has a 100-nanosecond precision, so avoid test failure due to a known system limitation.
* arti: rewrite ilog10_roundup using checked_ilog10.Nick Mathewson2023-11-301-16/+4
|
* Run maint/add_warning to add lint block everywhereIan Jackson2023-08-231-0/+1
|
* Run maint/add_warning to actually apply new lint allowsIan Jackson2023-07-101-0/+1
|
* arti: comments about catch_unwindNick Mathewson2023-07-061-0/+9
|
* time_granularity: Make sure formatter can't panicNick Mathewson2023-07-061-17/+49
| | | | | | I was unable to assure myself that tracing_subscriber could withstand a panicking Timer, so instead I'm trying to make sure our own LogTimer can't panic.
* arti: Add a `logging.time_granularity` option with 1s default.Nick Mathewson2023-07-061-0/+294
This lets us provide less information in our logs: in particular, it lets us avoid logging with microsecond precision. Closes #551.