-------------------------------------------------------------------------
| 33 | |
| 34 | //------------------------------------------------------------------------- |
| 35 | ScopedAction::~ScopedAction() |
| 36 | { |
| 37 | auto error = Try([&] |
| 38 | { |
| 39 | action_(); |
| 40 | }); |
| 41 | |
| 42 | if (error) |
| 43 | LOG_ERROR << *error; |
| 44 | } |
| 45 | |
| 46 | } |