]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/restful/hooks.py
update sources to v12.1.0
[ceph.git] / ceph / src / pybind / mgr / restful / hooks.py
1 from pecan.hooks import PecanHook
2
3 import traceback
4
5 import module
6
7 class ErrorHook(PecanHook):
8 def on_error(self, stat, exc):
9 module.instance.log.error(str(traceback.format_exc()))