mirror of
https://github.com/servo/servo.git
synced 2025-08-02 20:20:14 +01:00
Replace any errors caused by content-provided URLs by warnings.
This commit is contained in:
parent
0e5893dc0d
commit
d1e5bafef0
2 changed files with 3 additions and 3 deletions
|
@ -1403,7 +1403,7 @@ impl<Window: WindowMethods> IOCompositor<Window> {
|
|||
warn!("Sending load url to constellation failed ({}).", e);
|
||||
}
|
||||
},
|
||||
Err(e) => error!("Parsing URL {} failed ({}).", url_string, e),
|
||||
Err(e) => warn!("Parsing URL {} failed ({}).", url_string, e),
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue