summaryrefslogtreecommitdiff
path: root/doc/data/messages/l/logging-not-lazy/good.py
blob: c61704872f8e51332c7e3705897e28fee25495d5 (plain)
1
2
3
4
5
6
7
import logging

try:
    function()
except Exception as e:
    logging.error('Error occurred: %s', e)
    raise