diff --git a/plinth/actions.py b/plinth/actions.py index 3db73e26c..0e8f39098 100644 --- a/plinth/actions.py +++ b/plinth/actions.py @@ -331,7 +331,6 @@ def _privileged_call(module_name, action_name, arguments): return_values = func(*arguments['args'], **arguments['kwargs']) return_value = {'result': 'success', 'return': return_values} except Exception as exception: - logger.exception('Error executing action: %s', exception) return_value = { 'result': 'exception', 'exception': {