Hi I'm currently trying to load several network images and they often fail to load on android. I'm trying to use onError to diagnose why but can't seem to get it to work.
I've tried using it as
onError={(e) => console.log(e}
and
onError(error){
console.log(error)
}
onError={ this.onError.bind(this) }
but both of these result in this object
Proxy [[Handler]]: Object [[Target]]: SyntheticEvent [[IsRevoked]]: false
which, as best as I can tell, is the error event and doesn't contain anything useful.
My question is how do I use onError to diagnose why my network images are failing? but if you have any ideas about why I'll gladly take those too.