From 740cff985a4d183e398234e8da3f8dbf2369d3d8 Mon Sep 17 00:00:00 2001 From: Eren Dogan Date: Thu, 3 Nov 2022 22:02:05 -0700 Subject: [PATCH] Inform user when library's tech is used --- compiler/globals.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/compiler/globals.py b/compiler/globals.py index 472eb9a7..8c780b49 100644 --- a/compiler/globals.py +++ b/compiler/globals.py @@ -561,10 +561,9 @@ def import_tech(): try: OPENRAM_TECH = os.path.abspath(os.environ.get("OPENRAM_TECH")) except: - debug.warning("$OPENRAM_TECH environment variable is not defined. " - "Only the default technology modules will be considered if installed. " - "However, not having this environment variable may cause errors.") - + debug.info(2, + "$OPENRAM_TECH environment variable is not defined. " + "Only the default technology modules will be considered if installed.") # Point to the default technology modules that are part of the openram package try: import openram