Смотрю в книгу вижу фигу..
Не получаеться их ловить.
@contextlib.contextmanager def die_on_error(): try: yield except Exception: logging.error("exception in asynchronous operation",exc_info=True) sys.exit(1) with StackContext(die_on_error): # Any exception thrown here *or in callback and its desendents* # will cause the process to exit instead of spinning endlessly # in the ioloop. http_client.fetch(url, callback) ioloop.start()
Все идет в консоль, ошибки такие:
AttributeError: 'NoneType' object has no attribute 'do_handshake'
HTTPError: HTTP 599: [Errno 111] Connection refused
Но как-же их отлоить, обработать, и что-бы в консоль не сыпались?
Не понятны мне примеры из док-ции.