From 0107e1c050b43ea967a49df09bcbb3bae998c46d Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Fri, 26 Oct 2018 13:02:31 -0700 Subject: [PATCH] Reduce verbosity of utils --- compiler/base/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/base/utils.py b/compiler/base/utils.py index 28c5f997..f9597f39 100644 --- a/compiler/base/utils.py +++ b/compiler/base/utils.py @@ -66,7 +66,7 @@ def get_gds_size(name, gds_filename, units, layer): Open a GDS file and return the size from either the bounding box or a border layer. """ - debug.info(2,"Creating VLSI layout for {}".format(name)) + debug.info(4,"Creating VLSI layout for {}".format(name)) cell_vlsi = gdsMill.VlsiLayout(units=units) reader = gdsMill.Gds2reader(cell_vlsi) reader.loadFromFile(gds_filename)