We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 049da16 commit cb01aa1Copy full SHA for cb01aa1
crates/bevy_log/src/lib.rs
@@ -389,6 +389,11 @@ impl LogPlugin {
389
(chrome_layer.boxed(), guard)
390
}
391
392
+ #[expect(
393
+ clippy::allow_attributes,
394
+ reason = "We can't switch to `expect` for allow(unused_variables) as we use it if not on those platforms"
395
+ )]
396
+ #[allow(unused_variables, reason = "Not used on `wasm32`, `android` or `ios")]
397
fn build_system_output_layer(custom_format_layer: Option<BoxedLayer>) -> BoxedLayer {
398
let layer: BoxedLayer;
399
#[cfg(target_arch = "wasm32")]
0 commit comments