From d17078338abee64a041f3ddf7cceb3cb8a77339d Mon Sep 17 00:00:00 2001 From: jan Date: Thu, 7 Apr 2022 16:15:12 -0700 Subject: [PATCH] show more log messages --- examples/check.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/examples/check.py b/examples/check.py index c3d1fc3..802610a 100644 --- a/examples/check.py +++ b/examples/check.py @@ -3,6 +3,7 @@ Example code for checking connectivity in a layout by using `snarled` and `masque`. """ from pprint import pformat +import logging from masque.file import gdsii, oasis @@ -10,6 +11,10 @@ import snarled import snarled.interfaces.masque +logging.basicConfig() +logging.getLogger('snarled').setLevel(logging.INFO) + + connectivity = [ ((1, 0), (1, 2), (2, 0)), #M1 to M2 (via V12) ((1, 0), (1, 3), (3, 0)), #M1 to M3 (via V13)