Skip to content

Commit

Permalink
Update crates/rust-analyzer/src/bin/logger.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Lukas Wirth <lukastw97@gmail.com>
  • Loading branch information
matklad and Veykril committed Jun 18, 2023
1 parent 6505f84 commit d2bf732
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/rust-analyzer/src/bin/logger.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ impl LoggerConfig {
// that specify level.
let mut chalk_layer = None;
if let Some(chalk_filter) = self.chalk_filter {
let level: LevelFilter = chalk_filter.parse().with_context(|| "boo")?;
let level: LevelFilter = chalk_filter.parse().with_context(|| "invalid chalk log filter")?;
chalk_layer = Some(
HierarchicalLayer::default()
.with_indent_lines(true)
Expand Down

0 comments on commit d2bf732

Please sign in to comment.