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.
This commit is contained in:
parent
4613eb26cb
commit
3d6b9637c3
13 changed files with 25 additions and 30 deletions
|
|
@ -443,8 +443,7 @@ impl Backend {
|
|||
#[cfg(not(feature = "image"))]
|
||||
Primitive::Image { .. } => {
|
||||
log::warn!(
|
||||
"Unsupported primitive in `iced_tiny_skia`: {:?}",
|
||||
primitive
|
||||
"Unsupported primitive in `iced_tiny_skia`: {primitive:?}",
|
||||
);
|
||||
}
|
||||
#[cfg(feature = "svg")]
|
||||
|
|
@ -473,8 +472,7 @@ impl Backend {
|
|||
#[cfg(not(feature = "svg"))]
|
||||
Primitive::Svg { .. } => {
|
||||
log::warn!(
|
||||
"Unsupported primitive in `iced_tiny_skia`: {:?}",
|
||||
primitive
|
||||
"Unsupported primitive in `iced_tiny_skia`: {primitive:?}",
|
||||
);
|
||||
}
|
||||
Primitive::Custom(primitive::Custom::Fill {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue