Print debug message instead of fail when unable to load web font. Fixes #3301.

This commit is contained in:
Glenn Watson 2014-09-12 14:32:53 +10:00
parent a18633b163
commit 986db8073b

View file

@ -128,7 +128,7 @@ impl FontCache {
family.add_template(format!("{}", url).as_slice(), Some(bytes));
},
Err(msg) => {
fail!("{}: url={}", msg, url);
debug!("Failed to load web font: family={} url={}", family_name, url);
}
}
result.send(());