From 89e7198e21ca088a1aa3dea46035a12538ae2c29 Mon Sep 17 00:00:00 2001 From: Damien Churchill Date: Fri, 20 Mar 2009 17:14:28 +0000 Subject: [PATCH] add a logging statement to update_ui --- deluge/ui/web/json_api.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/deluge/ui/web/json_api.py b/deluge/ui/web/json_api.py index de5bfa9bc..72dec31e5 100644 --- a/deluge/ui/web/json_api.py +++ b/deluge/ui/web/json_api.py @@ -286,6 +286,9 @@ class WebApi(JSONComponent): d = Deferred() + log.info("Updating ui with keys '%r' and filters '%r'", keys, + filter_dict) + def got_stats(stats): ui_info["stats"] = stats d.callback(ui_info)