jbuehl/solaredge

Error Handling needs a cast to str

Closed this issue · 1 comments

logger.info("Failed to parse message: "+ex)

logger.info("Failed to parse message: "+ex)

TypeError: cannot concatenate 'str' and 'error' objects

We probably need to force ex to it's str representation str(ex) perhaps? (I am not super sure on error handling. )

That was broken. It is fixed.