Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1435ae7e authored by Adam Tauber's avatar Adam Tauber
Browse files

[enh] display engine error messages

parent 9e79ad4b
Loading
Loading
Loading
Loading
+4 −1
Original line number Original line Diff line number Diff line
@@ -135,7 +135,10 @@ def search_one_request_safe(engine_name, query, request_params, result_container
                             .format(engine_name, search_duration, timeout_limit, e))
                             .format(engine_name, search_duration, timeout_limit, e))
            requests_exception = True
            requests_exception = True
        else:
        else:
            result_container.add_unresponsive_engine((engine_name, gettext('unexpected crash')))
            result_container.add_unresponsive_engine((
                engine_name,
                u'{0}: {1}'.format(gettext('unexpected crash'), e),
            ))
            # others errors
            # others errors
            logger.exception('engine {0} : exception : {1}'.format(engine_name, e))
            logger.exception('engine {0} : exception : {1}'.format(engine_name, e))