Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: katharostech/wgpu
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5797c1274441575c676d5d7b911996e0bf16472a
Choose a base ref
..
head repository: katharostech/wgpu
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6ef89a0e7b50e3badebcc87346c922c0b5137242
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 wgpu/examples/framework.rs
2 changes: 1 addition & 1 deletion wgpu/examples/framework.rs
Original file line number Diff line number Diff line change
@@ -106,7 +106,7 @@ async fn setup<E: Example>(title: &str) -> Setup {
let level: log::Level = parse_url_query_string(&query_string, "RUST_LOG")
.map(|x| x.parse().ok())
.flatten()
.unwrap_or(log::Level::Info);
.unwrap_or(log::Level::Error);
console_log::init_with_level(level).expect("could not initialize logger");
std::panic::set_hook(Box::new(console_error_panic_hook::hook));
// On wasm, append the canvas to the document body