From 1262877a2b26a1a5aef41dc8c398723ebd1cc584 Mon Sep 17 00:00:00 2001 From: giacomomagni Date: Wed, 27 Dec 2023 11:11:45 +0100 Subject: [PATCH] add more logging to matching --- src/eko/evolution_operator/operator_matrix_element.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/eko/evolution_operator/operator_matrix_element.py b/src/eko/evolution_operator/operator_matrix_element.py index 1a287b9aa..202fd18d9 100644 --- a/src/eko/evolution_operator/operator_matrix_element.py +++ b/src/eko/evolution_operator/operator_matrix_element.py @@ -324,5 +324,12 @@ def compute(self): if self.order[0] == 0: logger.info("%s: no need to compute matching at LO", self.log_label) return + logger.info( + "%s: order: (%d, %d), backward method: %s", + self.log_label, + self.order[0], + self.order[1], + self.backward_method, + ) self.integrate()