Hello, First thanks for the great library. I have a question about how to make errors thrown from handlers to be (at least) logged. For example: ``` properties.on('PropertiesChanged', (iface, changed, invalidated) => { throw new Error('ew'); // this is not loged anywhere }); ``` Thanks.