Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir_ty/src/consteval.rs')
| -rw-r--r-- | crates/hir_ty/src/consteval.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/crates/hir_ty/src/consteval.rs b/crates/hir_ty/src/consteval.rs index ab1afce081..0e323c3013 100644 --- a/crates/hir_ty/src/consteval.rs +++ b/crates/hir_ty/src/consteval.rs @@ -28,7 +28,10 @@ impl ConstExt for Const { chalk_ir::ConstValue::Concrete(..) => false, _ => { - log::error!("is_unknown was called on a non-concrete constant value! {:?}", self); + tracing::error!( + "is_unknown was called on a non-concrete constant value! {:?}", + self + ); true } } |