From d918d13f4071c4fb924e2139edb3fce03132e95c Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Sat, 30 May 2020 18:03:53 +0530 Subject: [PATCH] fix: Print message when global search is updated --- frappe/utils/global_search.py | 1 + 1 file changed, 1 insertion(+) diff --git a/frappe/utils/global_search.py b/frappe/utils/global_search.py index 0272ae16f4..007d138638 100644 --- a/frappe/utils/global_search.py +++ b/frappe/utils/global_search.py @@ -274,6 +274,7 @@ def update_global_search(doc): sync_value_in_queue(value) def update_global_search_for_all_web_pages(): + print('Update global search for all web pages...') routes_to_index = get_routes_to_index() for route in routes_to_index: add_route_to_global_search(route)