Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Upgrade module fail warning log to error
  • Loading branch information
Manishearth committed Jan 6, 2020
1 parent 198599b commit be917ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/script/script_module.rs
Expand Up @@ -947,7 +947,7 @@ impl FetchResponseListener for ModuleContext {

if let Err(err) = load {
// Step 9.
warn!("Failed to fetch {}", self.url.clone());
error!("Failed to fetch {} with error {:?}", self.url.clone(), err);
let module_tree = {
let module_map = global.get_module_map().borrow();
module_map.get(&self.url.clone()).unwrap().clone()
Expand Down

0 comments on commit be917ae

Please sign in to comment.