mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-22 14:55:05 +00:00
Panic with an error by default
This commit is contained in:
parent
a3d4037fb5
commit
d50e74747d
@ -2165,9 +2165,8 @@ impl fmt::Debug for ErrorSinkRaw {
|
||||
}
|
||||
|
||||
fn default_error_handler(err: crate::Error) {
|
||||
log::error!("wgpu error: {}\n", err);
|
||||
|
||||
panic!("Handling wgpu errors as fatal by default");
|
||||
log::error!("Handling wgpu errors as fatal by default");
|
||||
panic!("wgpu error: {}\n", err);
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
|
Loading…
Reference in New Issue
Block a user