def my_handler(...):
try:
...
except Exception as e:
logger.error(traceback.format_exc())
raise
while True:
try:
bot.polling(none_stop=True)
except requests.exceptions.ConnectionError:
print (" ConnectionError exception occured while polling, restart in 1 second...")
sleep(1)
continue
except telebot.apihelper.ApiException:
print (" ApiException exception occured while polling, restart in 1 second...")
sleep(1)
continue
except requests.exceptions.ReadTimeout:
print (" ReadTimeout exception occured while polling, restart in 1 second...")
sleep(1)
continue
#
except Exception as e:
if logger_level and logger_level >= logging.ERROR:
logger.error("Infinity polling exception: %s", str(e))
if logger_level and logger_level >= logging.DEBUG:
logger.error("Exception traceback:\n%s", traceback.format_exc())
time.sleep(3)
continue
bot.infinity_polling(logger_level=logging.DEBUG)