From c21b3cbb3477ecf6fa71b5dbc605aa76fa70cd4c Mon Sep 17 00:00:00 2001 From: MitjaNemec Date: Wed, 1 Mar 2023 20:54:38 +0100 Subject: [PATCH] Added logging --- replicate_layout.py | 2 ++ version.txt | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/replicate_layout.py b/replicate_layout.py index 2dab085..469320f 100644 --- a/replicate_layout.py +++ b/replicate_layout.py @@ -703,6 +703,8 @@ def get_net_pairs(self, sheet): if (src_net_depth == dst_net_depth or net_delta_depth == fp_delta_depth) and src_net_path[-1] == dst_net_path[-1]: net_pairs.append(net_pair) continue + # if I didn't find proper pair, append it to list for reporting + logger.info(f"Cannot pair src net: {src_net_path} and dst net: {dst_net_path}") connectivity_issues.append((fp_pair[1].ref, pad_nr)) if connectivity_issues: """ diff --git a/version.txt b/version.txt index 6a0ca2d..e8f41f0 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.0.7 \ No newline at end of file +2.0.8 \ No newline at end of file