Log a message when favicon download fails.
This commit is contained in:
parent
d373662484
commit
cf57e1be32
|
@ -138,6 +138,10 @@ private extension SingleFaviconDownloader {
|
|||
return
|
||||
}
|
||||
|
||||
if let error = error {
|
||||
appDelegate.logMessage("Error downloading favicon at \(url): \(error)", type: .warning)
|
||||
}
|
||||
|
||||
callback(nil)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue