From 8f87df1e2f10398787ff8614103d403e027344bd Mon Sep 17 00:00:00 2001 From: "D. Berge" Date: Thu, 7 Aug 2025 10:52:13 +0200 Subject: [PATCH] Comment out debug output --- bin/fwr.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/fwr.py b/bin/fwr.py index fe75d50..00da44f 100644 --- a/bin/fwr.py +++ b/bin/fwr.py @@ -23,6 +23,7 @@ transform = { } def parse_line (line, fields, fixed = None): + # print("parse_line", line, fields, fixed) data = dict() if fixed: @@ -51,6 +52,7 @@ def parse_line (line, fields, fixed = None): data[key] = value + # print("parse_line data =", data) return data