Hi Yuval-
You need to drop the "on" in the event name, so it would look like:
<img data-bind="event: { error: log }, attr: { src: 'blah.jpg' }" />
You would need to apply the src in a binding, as the event would not be attached until after ko.applyBindings is called.
Hope that helps.