summaryrefslogtreecommitdiff
path: root/cli/cache/emit.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/cache/emit.rs')
-rw-r--r--cli/cache/emit.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/cache/emit.rs b/cli/cache/emit.rs
index 21f382c55..89ff496fd 100644
--- a/cli/cache/emit.rs
+++ b/cli/cache/emit.rs
@@ -90,7 +90,7 @@ impl EmitCache {
if let Err(err) = self.set_emit_code_result(specifier, source_hash, code) {
// should never error here, but if it ever does don't fail
if cfg!(debug_assertions) {
- panic!("Error saving emit data ({}): {}", specifier, err);
+ panic!("Error saving emit data ({specifier}): {err}");
} else {
log::debug!("Error saving emit data({}): {}", specifier, err);
}