How can I concat the results of type() ton a string in Python?
The reason I am trying to do this is for debugging purposes (on a google app engine server with no line-by-line debugging). Here is my code:
logging.debug('Type is: ' + type(some_var))
The error I am getting is: TypeError: cannot concatenate ‘str’ and ‘PropertiedClass’ objects
This is why we take the repr instead.