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
[BUG] Enable trace-level logging for chroma-system crate (#5785)
## Description of changes
In #5706, we dropped
trace-level logging for the `chroma` crate, which was only intended to
reduce the log level for the chroma client crate. However, because
`RUST_LOG` uses prefix-based matching, this also inadvertently dropped
trace-level logging for the `chroma-system` crate (and ALL other
`chroma`-prefixed crates that weren't explicitly set to `trace`-level),
because `chroma-system` wasn't previously explicitly enabled for
trace-level logging.
This PR fixes the log level for `chroma-system` (and other
`chroma`-prefixed crates) by specifically setting trace-level logging
for crate.
## Test plan
CI
## Migration plan
n/a
## Observability plan
Verify that trace-level logging for chroma-system crate is re-enabled.
## Documentation Changes
n/a
0 commit comments