try:
with open(filepath,'rb') as f:
con.storbinary('STOR '+ filepath, f)
logger.info('File successfully uploaded to '+ FTPADDR)
except Exception as e: # work on python 3.x
logger.error('Failed to upload to ftp: '+ str(e))
try:
# do something
pass
except:
# this will print the message "An exception occurred and the traceback"
# you can't have to explicitly give the message
logger.exception("An exception occurred")
print(repr(e)) # Returns both the message and type of exception
str(your_exception)