diff options
Diffstat (limited to 'src/components/gfx/font_cache_task.rs')
-rw-r--r-- | src/components/gfx/font_cache_task.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/gfx/font_cache_task.rs b/src/components/gfx/font_cache_task.rs index 1dc919c5d26..88455f92b2e 100644 --- a/src/components/gfx/font_cache_task.rs +++ b/src/components/gfx/font_cache_task.rs @@ -118,7 +118,7 @@ impl FontCache { family.add_template(format!("{}", url).as_slice(), Some(bytes)); }, Err(msg) => { - fail!(msg); + fail!("{}: url={}", msg, url); } } } |