mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-27 04:58:12 +08:00
Fix several bugs causing warning spam in the console (#4547)
This commit is contained in:
@@ -173,6 +173,12 @@ pub struct WasmLog;
|
||||
impl log::Log for WasmLog {
|
||||
#[inline]
|
||||
fn enabled(&self, metadata: &log::Metadata) -> bool {
|
||||
// Dependencies that log routine rendering details at the debug level are capped so they don't flood the console
|
||||
let crate_name = metadata.target().split("::").next().unwrap_or_default();
|
||||
if crate_name.starts_with("vello") {
|
||||
return metadata.level() <= log::Level::Info;
|
||||
}
|
||||
|
||||
metadata.level() <= log::max_level()
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user