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

try:
    function()
except Exception as e:
    logging.error('Error occurred: %s' % e)  # [logging-not-lazy]
    raise