From c241b28039cb2c1c985b1f84ed046cd560e12352 Mon Sep 17 00:00:00 2001 From: Tomas Groth Date: Tue, 19 Feb 2019 22:38:44 +0100 Subject: [PATCH] put debug in the log --- openlp/core/display/render.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/core/display/render.py b/openlp/core/display/render.py index acd2334c4..06ce89283 100644 --- a/openlp/core/display/render.py +++ b/openlp/core/display/render.py @@ -706,7 +706,7 @@ class Renderer(RegistryBase, LogMixin, RegistryProperties, DisplayWindow): else: # The remaining elements do not fit, thus reset the indexes, create a new list and continue. raw_list = raw_list[index + 1:] - print(raw_list) + log.debug(raw_list) raw_list[0] = raw_tags + raw_list[0] html_list = html_list[index + 1:] html_list[0] = html_tags + html_list[0]