Panic with an error by default

This commit is contained in:
Dzmitry Malyshau 2021-09-17 10:16:37 -04:00 committed by Dzmitry Malyshau
parent b0b5c2978c
commit 262e9a93fe

View File

@ -2156,9 +2156,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)]