summaryrefslogtreecommitdiffstats
path: root/wgpu/src/image/vector.rs
diff options
context:
space:
mode:
authorLibravatar Yuri Astrakhan <YuriAstrakhan@gmail.com>2023-09-19 01:31:10 -0400
committerLibravatar Yuri Astrakhan <YuriAstrakhan@gmail.com>2023-09-19 01:32:56 -0400
commit3d6b9637c3b1c9f3c654a3ecef7a247cfd6edef3 (patch)
tree70ffb135b91c824caa37a0fe4742179088e5a638 /wgpu/src/image/vector.rs
parent4613eb26cba3ded83f25ebdefd01c983c79a9d59 (diff)
downloadiced-3d6b9637c3b1c9f3c654a3ecef7a247cfd6edef3.tar.gz
iced-3d6b9637c3b1c9f3c654a3ecef7a247cfd6edef3.tar.bz2
iced-3d6b9637c3b1c9f3c654a3ecef7a247cfd6edef3.zip
Chore: Inline format args for ease of reading
A minor cleanup to inline all simple cases of format arguments. Makes the format strings just a bit easier to read.
Diffstat (limited to 'wgpu/src/image/vector.rs')
-rw-r--r--wgpu/src/image/vector.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/wgpu/src/image/vector.rs b/wgpu/src/image/vector.rs
index 2c03d36b..6582bb82 100644
--- a/wgpu/src/image/vector.rs
+++ b/wgpu/src/image/vector.rs
@@ -152,7 +152,7 @@ impl Cache {
let allocation =
atlas.upload(device, encoder, width, height, &rgba)?;
- log::debug!("allocating {} {}x{}", id, width, height);
+ log::debug!("allocating {id} {width}x{height}");
let _ = self.svg_hits.insert(id);
let _ = self.rasterized_hits.insert(key);